public static enum TagDefinition.ConfigTags extends java.lang.Enum<TagDefinition.ConfigTags>
Enum Constant and Description |
---|
ATTRIBUTE_SET |
GROUP |
NULL |
PARAMETER |
SECTION |
SUBSECTION |
Modifier and Type | Method and Description |
---|---|
static TagDefinition.ConfigTags |
getValue(java.lang.String key)
Returns predefined constant of element according to the element name.
|
static TagDefinition.ConfigTags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TagDefinition.ConfigTags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagDefinition.ConfigTags SECTION
public static final TagDefinition.ConfigTags SUBSECTION
public static final TagDefinition.ConfigTags GROUP
public static final TagDefinition.ConfigTags PARAMETER
public static final TagDefinition.ConfigTags ATTRIBUTE_SET
public static final TagDefinition.ConfigTags NULL
public static TagDefinition.ConfigTags[] values()
for (TagDefinition.ConfigTags c : TagDefinition.ConfigTags.values()) System.out.println(c);
public static TagDefinition.ConfigTags 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 nullpublic static TagDefinition.ConfigTags getValue(java.lang.String key)
key
- the name of element.