public static enum TEXParser.CharType extends Enum<TEXParser.CharType>
| Enum Constant and Description |
|---|
ACTIVE |
ALIGN_TAB |
ALPHANUM |
COMMENT |
DEFAULT |
END_GROUP |
EOL |
ESCAPE |
IGNORED |
INVALID |
MATH_SHIFT |
PARAM |
START_GROUP |
SUBSCRIPT |
SUPERSCRIPT |
WHITESPACE |
| Modifier and Type | Method and Description |
|---|---|
static TEXParser.CharType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TEXParser.CharType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TEXParser.CharType ESCAPE
public static final TEXParser.CharType START_GROUP
public static final TEXParser.CharType END_GROUP
public static final TEXParser.CharType MATH_SHIFT
public static final TEXParser.CharType ALIGN_TAB
public static final TEXParser.CharType EOL
public static final TEXParser.CharType PARAM
public static final TEXParser.CharType SUPERSCRIPT
public static final TEXParser.CharType SUBSCRIPT
public static final TEXParser.CharType WHITESPACE
public static final TEXParser.CharType ALPHANUM
public static final TEXParser.CharType DEFAULT
public static final TEXParser.CharType ACTIVE
public static final TEXParser.CharType COMMENT
public static final TEXParser.CharType IGNORED
public static final TEXParser.CharType INVALID
public static TEXParser.CharType[] values()
for (TEXParser.CharType c : TEXParser.CharType.values()) System.out.println(c);
public static TEXParser.CharType 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 © 2022. All rights reserved.