public static enum Tokens.Tag extends Enum<Tokens.Tag>
Tokens.Fragment
token tags.Enum Constant and Description |
---|
DECIMAL
Decimal number literal
|
IDENTIFIER
Regular identifier
|
INTEGER
Integral number literal
|
RESERVED
Reserved word
|
Modifier and Type | Method and Description |
---|---|
static Tokens.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tokens.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tokens.Tag RESERVED
public static final Tokens.Tag IDENTIFIER
public static final Tokens.Tag INTEGER
public static final Tokens.Tag DECIMAL
public static Tokens.Tag[] values()
for (Tokens.Tag c : Tokens.Tag.values()) System.out.println(c);
public static Tokens.Tag 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 © 2013–2016 jparsec. All rights reserved.