private static enum I18n.PluralMode extends Enum<I18n.PluralMode>
Enum Constant and Description |
---|
MODE_CS |
MODE_GREATERONE |
MODE_NONE |
MODE_NOTONE |
MODE_PL |
MODE_RU |
MODE_SK |
Modifier and Type | Method and Description |
---|---|
static I18n.PluralMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static I18n.PluralMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final I18n.PluralMode MODE_NOTONE
public static final I18n.PluralMode MODE_NONE
public static final I18n.PluralMode MODE_GREATERONE
public static final I18n.PluralMode MODE_CS
public static final I18n.PluralMode MODE_PL
public static final I18n.PluralMode MODE_RU
public static final I18n.PluralMode MODE_SK
public static I18n.PluralMode[] values()
for (I18n.PluralMode c : I18n.PluralMode.values()) System.out.println(c);
public static I18n.PluralMode 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