public enum GrammaticalGender extends Enum<GrammaticalGender>
IWiktionaryEntry.| Enum Constant and Description |
|---|
FEMININE
Feminine gender (e.g., the German "Katze").
|
MASCULINE
Masculine gender (e.g., the German "Hund").
|
NEUTER
Neuter gender (e.g., the German "Haus").
|
| Modifier and Type | Method and Description |
|---|---|
static GrammaticalGender |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GrammaticalGender[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GrammaticalGender MASCULINE
public static final GrammaticalGender FEMININE
public static final GrammaticalGender NEUTER
public static GrammaticalGender[] values()
for (GrammaticalGender c : GrammaticalGender.values()) System.out.println(c);
public static GrammaticalGender valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2011-2016 Ubiquitous Knowledge Processing (UKP) Lab. All Rights Reserved.