| Enum Constant and Description |
|---|
ACCUSATIVE |
DATIVE |
GENITIVE |
INSTRUMENTAL |
NOMINATIVE |
PREPOSITIONAL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static NameCase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NameCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Nom") public static final NameCase NOMINATIVE
@SerializedName(value="Gen") public static final NameCase GENITIVE
@SerializedName(value="Dat") public static final NameCase DATIVE
@SerializedName(value="Acc") public static final NameCase ACCUSATIVE
@SerializedName(value="Ins") public static final NameCase INSTRUMENTAL
@SerializedName(value="Abl") public static final NameCase PREPOSITIONAL
public static NameCase[] values()
for (NameCase c : NameCase.values()) System.out.println(c);
public static NameCase 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<NameCase>