public enum CodeTreeKind extends java.lang.Enum<CodeTreeKind>
Enum Constant and Description |
---|
COMMA_GROUP |
GROUP |
INDENT |
NEW_LINE |
REMOVE_LAST |
STATIC_FIELD_REFERENCE |
STATIC_METHOD_REFERENCE |
STRING |
TYPE |
Modifier and Type | Method and Description |
---|---|
static CodeTreeKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CodeTreeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeTreeKind STATIC_FIELD_REFERENCE
public static final CodeTreeKind STATIC_METHOD_REFERENCE
public static final CodeTreeKind GROUP
public static final CodeTreeKind COMMA_GROUP
public static final CodeTreeKind REMOVE_LAST
public static final CodeTreeKind INDENT
public static final CodeTreeKind STRING
public static final CodeTreeKind NEW_LINE
public static final CodeTreeKind TYPE
public static CodeTreeKind[] values()
for (CodeTreeKind c : CodeTreeKind.values()) System.out.println(c);
public static CodeTreeKind 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 null