| Enum Constant and Description |
|---|
DECIMAL |
DOUBLE |
FALSE |
INTEGER |
KEYWORD |
LONG |
NIL |
STRING |
STRING_BLOCK |
SYMBOL |
TRUE |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static AtomType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AtomType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AtomType NIL
public static final AtomType TRUE
public static final AtomType FALSE
public static final AtomType INTEGER
public static final AtomType LONG
public static final AtomType DOUBLE
public static final AtomType DECIMAL
public static final AtomType STRING
public static final AtomType STRING_BLOCK
public static final AtomType KEYWORD
public static final AtomType SYMBOL
public static final AtomType UNKNOWN
public static AtomType[] values()
for (AtomType c : AtomType.values()) System.out.println(c);
public static AtomType 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