public static enum PluralRules.Operand extends java.lang.Enum<PluralRules.Operand>
| Enum Constant and Description |
|---|
f
All visible fraction digits as an integer, including trailing zeros.
|
i
The integer value, with the fraction digits truncated off.
|
j
THIS OPERAND IS DEPRECATED AND HAS BEEN REMOVED FROM THE SPEC.
|
n
The double value of the entire number.
|
t
Visible fraction digits as an integer, not including trailing zeros.
|
v
Number of visible fraction digits.
|
w
Number of visible fraction digits, not including trailing zeros.
|
| Modifier and Type | Method and Description |
|---|---|
static PluralRules.Operand |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PluralRules.Operand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluralRules.Operand n
public static final PluralRules.Operand i
public static final PluralRules.Operand f
public static final PluralRules.Operand t
public static final PluralRules.Operand v
public static final PluralRules.Operand w
public static final PluralRules.Operand j
public static PluralRules.Operand[] values()
for (PluralRules.Operand c : PluralRules.Operand.values()) System.out.println(c);
public static PluralRules.Operand 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