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