public static enum Variable.Kind extends java.lang.Enum<Variable.Kind>
| Modifier and Type | Method and Description |
|---|---|
static Variable.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Variable.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Variable.Kind SCHEMA
public static final Variable.Kind ELEMENT
public static final Variable.Kind MESSAGE
public static Variable.Kind[] values()
for (Variable.Kind c : Variable.Kind.values()) System.out.println(c);
public static Variable.Kind valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null