@InterfaceAudience.Public @InterfaceStability.Evolving public static enum Parser.TType extends Enum<Parser.TType>
Enum Constant and Description |
---|
CIF |
COMMA |
IDENT |
LPAREN |
NUM |
QUOT |
RPAREN |
Modifier and Type | Method and Description |
---|---|
static Parser.TType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parser.TType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.TType CIF
public static final Parser.TType IDENT
public static final Parser.TType COMMA
public static final Parser.TType LPAREN
public static final Parser.TType RPAREN
public static final Parser.TType QUOT
public static final Parser.TType NUM
public static Parser.TType[] values()
for (Parser.TType c : Parser.TType.values()) System.out.println(c);
public static Parser.TType 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 © 2024 Apache Software Foundation. All rights reserved.