edu.stanford.nlp.international.process
Enum Dataset.Encoding

java.lang.Object
  extended by java.lang.Enum<Dataset.Encoding>
      extended by edu.stanford.nlp.international.process.Dataset.Encoding
All Implemented Interfaces:
Serializable, Comparable<Dataset.Encoding>
Enclosing interface:
Dataset

public static enum Dataset.Encoding
extends Enum<Dataset.Encoding>


Enum Constant Summary
Buckwalter
           
UTF8
           
 
Method Summary
static Dataset.Encoding valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Dataset.Encoding[] 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

Buckwalter

public static final Dataset.Encoding Buckwalter

UTF8

public static final Dataset.Encoding UTF8
Method Detail

values

public static Dataset.Encoding[] 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 (Dataset.Encoding c : Dataset.Encoding.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Dataset.Encoding 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