germanet
Enum WordClass
java.lang.Object
java.lang.Enum<WordClass>
germanet.WordClass
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<WordClass>
public enum WordClass
- extends java.lang.Enum<WordClass>
Enumeration of possible word classes.
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 |
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
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