public enum Format extends Enum<Format>
| Enum Constant and Description |
|---|
ATTRIBUTE
An Xml Attribute
|
ELEMENT
An Xml Element
|
VALUE
An Xml Element where the data is the value
|
| Modifier and Type | Method and Description |
|---|---|
static Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Format ATTRIBUTE
public static final Format ELEMENT
public static final Format VALUE
public static Format[] values()
for (Format c : Format.values()) System.out.println(c);
public static Format valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2009-2017 Oracle Corporation. All Rights Reserved.