public static enum Token.Type extends Enum<Token.Type>
| Enum Constant and Description |
|---|
TT_CLOSEARRAY |
TT_CLOSEDICT |
TT_EOF |
TT_HEXSTRING |
TT_INTEGER |
TT_KEYWORD |
TT_LITSTRING |
TT_NAME |
TT_NONE |
TT_OPENARRAY |
TT_OPENDICT |
TT_REAL |
| Modifier and Type | Method and Description |
|---|---|
static Token.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Token.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Token.Type TT_NONE
public static final Token.Type TT_KEYWORD
public static final Token.Type TT_INTEGER
public static final Token.Type TT_REAL
public static final Token.Type TT_LITSTRING
public static final Token.Type TT_HEXSTRING
public static final Token.Type TT_NAME
public static final Token.Type TT_OPENARRAY
public static final Token.Type TT_CLOSEARRAY
public static final Token.Type TT_OPENDICT
public static final Token.Type TT_CLOSEDICT
public static final Token.Type TT_EOF
public static Token.Type[] values()
for (Token.Type c : Token.Type.values()) System.out.println(c);
public static Token.Type 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 © 2015–2017 The veraPDF Consortium. All rights reserved.