public enum HistoneType extends Enum<HistoneType>
| Enum Constant and Description |
|---|
T_ARRAY |
T_BASE |
T_BOOLEAN |
T_BREAK |
T_CONTINUE |
T_DATE |
T_GLOBAL |
T_MACRO |
T_NULL |
T_NUMBER |
T_REGEXP |
T_STRING |
T_UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static HistoneType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HistoneType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HistoneType T_BASE
public static final HistoneType T_UNDEFINED
public static final HistoneType T_NULL
public static final HistoneType T_BOOLEAN
public static final HistoneType T_NUMBER
public static final HistoneType T_STRING
public static final HistoneType T_REGEXP
public static final HistoneType T_MACRO
public static final HistoneType T_ARRAY
public static final HistoneType T_GLOBAL
public static final HistoneType T_BREAK
public static final HistoneType T_CONTINUE
public static final HistoneType T_DATE
public static HistoneType[] values()
for (HistoneType c : HistoneType.values()) System.out.println(c);
public static HistoneType 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 nullCopyright © 2017. All rights reserved.