@Deprecated public static enum PluralRules.Operand extends Enum<PluralRules.Operand>
Enum Constant and Description |
---|
c
Deprecated.
This API is ICU internal only.
|
e
Deprecated.
This API is ICU internal only.
|
f
Deprecated.
This API is ICU internal only.
|
i
Deprecated.
This API is ICU internal only.
|
j
Deprecated.
This API is ICU internal only.
|
n
Deprecated.
This API is ICU internal only.
|
t
Deprecated.
This API is ICU internal only.
|
v
Deprecated.
This API is ICU internal only.
|
w
Deprecated.
This API is ICU internal only.
|
Modifier and Type | Method and Description |
---|---|
static PluralRules.Operand |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static PluralRules.Operand[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final PluralRules.Operand n
@Deprecated public static final PluralRules.Operand i
@Deprecated public static final PluralRules.Operand f
@Deprecated public static final PluralRules.Operand t
@Deprecated public static final PluralRules.Operand v
@Deprecated public static final PluralRules.Operand w
@Deprecated public static final PluralRules.Operand e
@Deprecated public static final PluralRules.Operand c
PLURAL_OPERAND_E
.
In the future, it will represent:
Suppressed exponent for compact notation (exponent needed in
compact notation to approximate i).@Deprecated public static final PluralRules.Operand j
Returns the integer value, but will fail if the number has fraction digits. That is, using "j" instead of "i" is like implicitly adding "v is 0".
For example, "j is 3" is equivalent to "i is 3 and v is 0": it matches "3" but not "3.1" or "3.0".
public static PluralRules.Operand[] values()
for (PluralRules.Operand c : PluralRules.Operand.values()) System.out.println(c);
public static PluralRules.Operand 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 nullCopyright © 2016 Unicode, Inc. and others.