de.tuebingen.uni.sfs.germanet.api
Enum WordClass

java.lang.Object
  extended by java.lang.Enum<WordClass>
      extended by de.tuebingen.uni.sfs.germanet.api.WordClass
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WordClass>

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

Enumeration of possible word classes.


Enum Constant Summary
Allgemein
           
Artefakt
           
Attribut
           
Besitz
           
Bewegung
           
Form
           
Gefuehl
           
Geist
           
Geschehen
           
Gesellschaft
           
Gruppe
           
Koerper
           
Koerperfunktion
           
Kognition
           
Kommunikation
           
Konkurrenz
           
Kontakt
           
Lokation
           
Menge
           
Mensch
           
Motiv
           
Nahrung
           
natGegenstand
           
natPhaenomen
           
Ort
           
Pertonym
           
Perzeption
           
Pflanze
           
privativ
           
Relation
           
Schoepfung
           
Substanz
           
Tier
           
Tops
           
Veraenderung
           
Verbrauch
           
Verhalten
           
Zeit
           
 
Method Summary
static WordClass valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WordClass[] 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

Allgemein

public static final WordClass Allgemein

Bewegung

public static final WordClass Bewegung

Gefuehl

public static final WordClass Gefuehl

Geist

public static final WordClass Geist

Gesellschaft

public static final WordClass Gesellschaft

Koerper

public static final WordClass Koerper

Menge

public static final WordClass Menge

natPhaenomen

public static final WordClass natPhaenomen

Ort

public static final WordClass Ort

Pertonym

public static final WordClass Pertonym

Perzeption

public static final WordClass Perzeption

privativ

public static final WordClass privativ

Relation

public static final WordClass Relation

Substanz

public static final WordClass Substanz

Verhalten

public static final WordClass Verhalten

Zeit

public static final WordClass Zeit

Artefakt

public static final WordClass Artefakt

Attribut

public static final WordClass Attribut

Besitz

public static final WordClass Besitz

Form

public static final WordClass Form

Geschehen

public static final WordClass Geschehen

Gruppe

public static final WordClass Gruppe

Kognition

public static final WordClass Kognition

Kommunikation

public static final WordClass Kommunikation

Mensch

public static final WordClass Mensch

Motiv

public static final WordClass Motiv

Nahrung

public static final WordClass Nahrung

natGegenstand

public static final WordClass natGegenstand

Pflanze

public static final WordClass Pflanze

Tier

public static final WordClass Tier

Tops

public static final WordClass Tops

Koerperfunktion

public static final WordClass Koerperfunktion

Konkurrenz

public static final WordClass Konkurrenz

Kontakt

public static final WordClass Kontakt

Lokation

public static final WordClass Lokation

Schoepfung

public static final WordClass Schoepfung

Veraenderung

public static final WordClass Veraenderung

Verbrauch

public static final WordClass Verbrauch
Method Detail

values

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

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

valueOf

public static WordClass 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