public static enum ElementMap.group extends Enum<ElementMap.group>
| Modifier and Type | Method and Description |
|---|---|
static ElementMap.group |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElementMap.group[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementMap.group empty
public static final ElementMap.group pcdata
public static final ElementMap.group mixed
public static final ElementMap.group cp
public static ElementMap.group[] values()
for (ElementMap.group c : ElementMap.group.values()) System.out.println(c);
public static ElementMap.group 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 nullsee also the complete user documentation .