public enum TagAttr extends Enum<TagAttr>
Enum Constant and Description |
---|
BODY |
DIRECTIVE |
END_COLUMN |
END_LINE |
FLAGS |
IS_PREFIX |
LABEL |
NAME |
OP |
OPAQUE_POSITION |
SOURCE |
START_COLUMN |
START_LINE |
TYPE |
VALUE |
Modifier and Type | Method and Description |
---|---|
static TagAttr |
get(String name) |
String |
toString() |
static TagAttr |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TagAttr[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagAttr BODY
public static final TagAttr DIRECTIVE
public static final TagAttr END_COLUMN
public static final TagAttr END_LINE
public static final TagAttr FLAGS
public static final TagAttr IS_PREFIX
public static final TagAttr LABEL
public static final TagAttr NAME
public static final TagAttr OP
public static final TagAttr OPAQUE_POSITION
public static final TagAttr SOURCE
public static final TagAttr START_COLUMN
public static final TagAttr START_LINE
public static final TagAttr TYPE
public static final TagAttr VALUE
public static TagAttr[] values()
for (TagAttr c : TagAttr.values()) System.out.println(c);
public static TagAttr 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 null