Package com.ibm.icu.impl
Enum StaticUnicodeSets.Key
- java.lang.Object
-
- java.lang.Enum<StaticUnicodeSets.Key>
-
- com.ibm.icu.impl.StaticUnicodeSets.Key
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StaticUnicodeSets.Key>
- Enclosing class:
- StaticUnicodeSets
public static enum StaticUnicodeSets.Key extends java.lang.Enum<StaticUnicodeSets.Key>
-
-
Enum Constant Summary
-
Constructor Summary
Constructors Modifier Constructor Description private
Key()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StaticUnicodeSets.Key
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StaticUnicodeSets.Key[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMPTY
public static final StaticUnicodeSets.Key EMPTY
-
DEFAULT_IGNORABLES
public static final StaticUnicodeSets.Key DEFAULT_IGNORABLES
-
STRICT_IGNORABLES
public static final StaticUnicodeSets.Key STRICT_IGNORABLES
-
COMMA
public static final StaticUnicodeSets.Key COMMA
-
PERIOD
public static final StaticUnicodeSets.Key PERIOD
-
STRICT_COMMA
public static final StaticUnicodeSets.Key STRICT_COMMA
-
STRICT_PERIOD
public static final StaticUnicodeSets.Key STRICT_PERIOD
-
APOSTROPHE_SIGN
public static final StaticUnicodeSets.Key APOSTROPHE_SIGN
-
OTHER_GROUPING_SEPARATORS
public static final StaticUnicodeSets.Key OTHER_GROUPING_SEPARATORS
-
ALL_SEPARATORS
public static final StaticUnicodeSets.Key ALL_SEPARATORS
-
STRICT_ALL_SEPARATORS
public static final StaticUnicodeSets.Key STRICT_ALL_SEPARATORS
-
MINUS_SIGN
public static final StaticUnicodeSets.Key MINUS_SIGN
-
PLUS_SIGN
public static final StaticUnicodeSets.Key PLUS_SIGN
-
PERCENT_SIGN
public static final StaticUnicodeSets.Key PERCENT_SIGN
-
PERMILLE_SIGN
public static final StaticUnicodeSets.Key PERMILLE_SIGN
-
INFINITY_SIGN
public static final StaticUnicodeSets.Key INFINITY_SIGN
-
DOLLAR_SIGN
public static final StaticUnicodeSets.Key DOLLAR_SIGN
-
POUND_SIGN
public static final StaticUnicodeSets.Key POUND_SIGN
-
RUPEE_SIGN
public static final StaticUnicodeSets.Key RUPEE_SIGN
-
YEN_SIGN
public static final StaticUnicodeSets.Key YEN_SIGN
-
WON_SIGN
public static final StaticUnicodeSets.Key WON_SIGN
-
DIGITS
public static final StaticUnicodeSets.Key DIGITS
-
DIGITS_OR_ALL_SEPARATORS
public static final StaticUnicodeSets.Key DIGITS_OR_ALL_SEPARATORS
-
DIGITS_OR_STRICT_ALL_SEPARATORS
public static final StaticUnicodeSets.Key DIGITS_OR_STRICT_ALL_SEPARATORS
-
-
Method Detail
-
values
public static StaticUnicodeSets.Key[] values()
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 (StaticUnicodeSets.Key c : StaticUnicodeSets.Key.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StaticUnicodeSets.Key valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-