public enum CompoundCategory extends java.lang.Enum<CompoundCategory>
Enum Constant and Description |
---|
Adjektiv |
Adverb |
Nomen |
Partikel |
Präposition |
Pronomen |
Verb |
Modifier and Type | Method and Description |
---|---|
static CompoundCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompoundCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompoundCategory Adjektiv
public static final CompoundCategory Nomen
public static final CompoundCategory Verb
public static final CompoundCategory Adverb
public static final CompoundCategory Präposition
public static final CompoundCategory Partikel
public static final CompoundCategory Pronomen
public static CompoundCategory[] values()
for (CompoundCategory c : CompoundCategory.values()) System.out.println(c);
public static CompoundCategory valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null