Enum Constant and Description |
---|
ACTIVE |
ALIGNMENT_TAB |
BEGIN_GROUP |
COMMENT |
END_GROUP |
END_OF_LINE |
ESCAPE |
IGNORED |
INVALID |
LETTER |
MATH_SHIFT |
OTHER |
PARAMETER |
SPACE |
SUBSCRIPT |
SUPERSCRIPT |
Modifier and Type | Method and Description |
---|---|
static Catcode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Catcode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Catcode ESCAPE
public static final Catcode BEGIN_GROUP
public static final Catcode END_GROUP
public static final Catcode MATH_SHIFT
public static final Catcode ALIGNMENT_TAB
public static final Catcode END_OF_LINE
public static final Catcode PARAMETER
public static final Catcode SUPERSCRIPT
public static final Catcode SUBSCRIPT
public static final Catcode IGNORED
public static final Catcode SPACE
public static final Catcode LETTER
public static final Catcode OTHER
public static final Catcode ACTIVE
public static final Catcode COMMENT
public static final Catcode INVALID
public static Catcode[] values()
for (Catcode c : Catcode.values()) System.out.println(c);
public static Catcode 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