edu.stanford.nlp.util.logging
Enum Style

java.lang.Object
  extended by java.lang.Enum<Style>
      extended by 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)

Enum Constant Summary
BLINK
           
BOLD
           
CROSS_OUT
           
DIM
           
ITALIC
           
NONE
           
UNDERLINE
           
 
Field Summary
 String ansiCode
           
 
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Field Detail

ansiCode

public final String ansiCode
Method Detail

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