edu.stanford.nlp.util.logging
Enum Style
java.lang.Object
java.lang.Enum<Style>
edu.stanford.nlp.util.logging.Style
- All Implemented Interfaces:
- Serializable, Comparable<Style>
public enum Style
- extends Enum<Style>
ANSI supported styles (rather, a subset of)
These values are mirrored in Redwood.Util
- Author:
- Gabor Angeli (angeli at cs.stanford)
Method Summary |
static Style |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
NONE
public static final Style NONE
BOLD
public static final Style BOLD
DIM
public static final Style DIM
ITALIC
public static final Style ITALIC
UNDERLINE
public static final Style UNDERLINE
BLINK
public static final Style BLINK
CROSS_OUT
public static final Style CROSS_OUT
ansiCode
public final String ansiCode
values
public static Style[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Style c : Style.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Style valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Stanford NLP Group