public enum AdjectivePosition extends java.lang.Enum<AdjectivePosition>
Enum Constant and Description |
---|
ATTRIBUTIVE |
IMMEDIATE_POSTNOMINAL |
NONE |
PREDICATIVE |
Modifier and Type | Method and Description |
---|---|
static AdjectivePosition |
getAdjectivePositionForKey(java.lang.String key) |
java.lang.String |
getKey() |
java.lang.String |
getLabel() |
java.lang.String |
toString() |
static AdjectivePosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdjectivePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdjectivePosition NONE
public static final AdjectivePosition PREDICATIVE
public static final AdjectivePosition ATTRIBUTIVE
public static final AdjectivePosition IMMEDIATE_POSTNOMINAL
public static AdjectivePosition[] values()
for (AdjectivePosition c : AdjectivePosition.values()) System.out.println(c);
public static AdjectivePosition 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 static AdjectivePosition getAdjectivePositionForKey(java.lang.String key)
public java.lang.String getKey()
public java.lang.String getLabel()
public java.lang.String toString()
toString
in class java.lang.Enum<AdjectivePosition>