de.tuebingen.uni.sfs.dspin.tcf.data
Enum LayerTag

java.lang.Object
  extended by java.lang.Enum<LayerTag>
      extended by de.tuebingen.uni.sfs.dspin.tcf.data.LayerTag
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LayerTag>

public enum LayerTag
extends java.lang.Enum<LayerTag>


Enum Constant Summary
COREFERENCES
           
LEMMAS
           
MORPHOLOGY
           
NAMED_ENTITIES
           
PARSING_CONSTITUENT
           
PARSING_DEPENDENCY
           
POSTAGS
           
SEM_LEX_RELATIONS
           
SENTENCES
           
TEXT
           
TOKENS
           
 
Method Summary
static LayerTag getFromXmlName(java.lang.String xmlName)
           
 java.lang.String getXmlName()
           
static LayerTag valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LayerTag[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TEXT

public static final LayerTag TEXT

TOKENS

public static final LayerTag TOKENS

LEMMAS

public static final LayerTag LEMMAS

MORPHOLOGY

public static final LayerTag MORPHOLOGY

SENTENCES

public static final LayerTag SENTENCES

POSTAGS

public static final LayerTag POSTAGS

PARSING_CONSTITUENT

public static final LayerTag PARSING_CONSTITUENT

PARSING_DEPENDENCY

public static final LayerTag PARSING_DEPENDENCY

COREFERENCES

public static final LayerTag COREFERENCES

NAMED_ENTITIES

public static final LayerTag NAMED_ENTITIES

SEM_LEX_RELATIONS

public static final LayerTag SEM_LEX_RELATIONS
Method Detail

values

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

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

valueOf

public static LayerTag valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getXmlName

public java.lang.String getXmlName()

getFromXmlName

public static LayerTag getFromXmlName(java.lang.String xmlName)