public enum IPOSTag extends Enum<IPOSTag>
| Enum Constant and Description |
|---|
adj |
adv |
dieprysl |
noun |
numr |
prysudk_sl |
verb |
| Modifier and Type | Method and Description |
|---|---|
static IPOSTag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IPOSTag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPOSTag noun
public static final IPOSTag adj
public static final IPOSTag verb
public static final IPOSTag adv
public static final IPOSTag numr
public static final IPOSTag dieprysl
public static final IPOSTag prysudk_sl
public static IPOSTag[] values()
for (IPOSTag c : IPOSTag.values()) System.out.println(c);
public static IPOSTag 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 null