public static enum LatexUtils.Characters extends Enum<LatexUtils.Characters>
Enum Constant and Description |
---|
AMPERSAND |
BACKSLASH |
CARET |
DOLLAR |
PERCENTAGE |
UNDERSCORE |
Modifier and Type | Method and Description |
---|---|
static LatexUtils.Characters |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LatexUtils.Characters[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LatexUtils.Characters BACKSLASH
public static final LatexUtils.Characters PERCENTAGE
public static final LatexUtils.Characters UNDERSCORE
public static final LatexUtils.Characters DOLLAR
public static final LatexUtils.Characters AMPERSAND
public static final LatexUtils.Characters CARET
public static LatexUtils.Characters[] values()
for (LatexUtils.Characters c : LatexUtils.Characters.values()) System.out.println(c);
public static LatexUtils.Characters 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 © 2017. All Rights Reserved.