Package com.ibm.icu.text
Enum PluralRules.StandardPluralCategories
- java.lang.Object
-
- java.lang.Enum<PluralRules.StandardPluralCategories>
-
- com.ibm.icu.text.PluralRules.StandardPluralCategories
-
- All Implemented Interfaces:
Serializable,Comparable<PluralRules.StandardPluralCategories>
- Enclosing class:
- PluralRules
@Deprecated public static enum PluralRules.StandardPluralCategories extends Enum<PluralRules.StandardPluralCategories>
Deprecated.This API is ICU internal only.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description fewDeprecated.This API is ICU internal only.manyDeprecated.This API is ICU internal only.oneDeprecated.This API is ICU internal only.otherDeprecated.This API is ICU internal only.twoDeprecated.This API is ICU internal only.zeroDeprecated.This API is ICU internal only.
-
Field Summary
Fields Modifier and Type Field Description static intCOUNTDeprecated.This API is ICU internal only.static List<PluralRules.StandardPluralCategories>VALUESDeprecated.This API is ICU internal only.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static PluralRules.StandardPluralCategoriesvalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static PluralRules.StandardPluralCategories[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
zero
@Deprecated public static final PluralRules.StandardPluralCategories zero
Deprecated.This API is ICU internal only.
-
one
@Deprecated public static final PluralRules.StandardPluralCategories one
Deprecated.This API is ICU internal only.
-
two
@Deprecated public static final PluralRules.StandardPluralCategories two
Deprecated.This API is ICU internal only.
-
few
@Deprecated public static final PluralRules.StandardPluralCategories few
Deprecated.This API is ICU internal only.
-
many
@Deprecated public static final PluralRules.StandardPluralCategories many
Deprecated.This API is ICU internal only.
-
other
@Deprecated public static final PluralRules.StandardPluralCategories other
Deprecated.This API is ICU internal only.
-
-
Field Detail
-
VALUES
@Deprecated public static final List<PluralRules.StandardPluralCategories> VALUES
Deprecated.This API is ICU internal only.
-
COUNT
@Deprecated public static final int COUNT
Deprecated.This API is ICU internal only.
-
-
Method Detail
-
values
public static PluralRules.StandardPluralCategories[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PluralRules.StandardPluralCategories c : PluralRules.StandardPluralCategories.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PluralRules.StandardPluralCategories valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-