private static enum I18n.PluralMode extends java.lang.Enum<I18n.PluralMode>
I18n.pluralEval(long)| Enum Constant and Description |
|---|
MODE_CS
Special mode for
Czech.
|
MODE_GREATERONE
Plural = Greater than 1.
|
MODE_LT
Special mode for
Lithuanian.
|
MODE_NONE
No plural.
|
MODE_NOTONE
Plural = Not 1.
|
MODE_PL
Special mode for
Polish.
|
MODE_RU
Special mode for
Russian.
|
MODE_SK
Special mode for
Slovak.
|
| Modifier and Type | Method and Description |
|---|---|
static I18n.PluralMode |
valueOf(java.lang.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_LT
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(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 null