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