Package com.ibm.icu.lang
Enum UCharacter.IdentifierType
- java.lang.Object
-
- java.lang.Enum<UCharacter.IdentifierType>
-
- com.ibm.icu.lang.UCharacter.IdentifierType
-
- All Implemented Interfaces:
Serializable,Comparable<UCharacter.IdentifierType>
- Enclosing class:
- UCharacter
public static enum UCharacter.IdentifierType extends Enum<UCharacter.IdentifierType>
Identifier Type constants. See https://www.unicode.org/reports/tr39/#Identifier_Status_and_Type.- See Also:
UProperty.IDENTIFIER_TYPE- Status:
- Stable ICU 75.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFAULT_IGNORABLEDEPRECATEDEXCLUSIONINCLUSIONLIMITED_USENOT_CHARACTERNOT_NFKCNOT_XIDOBSOLETERECOMMENDEDTECHNICALUNCOMMON_USE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UCharacter.IdentifierTypevalueOf(String name)Returns the enum constant of this type with the specified name.static UCharacter.IdentifierType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_CHARACTER
public static final UCharacter.IdentifierType NOT_CHARACTER
- Status:
- Stable ICU 75.
-
DEPRECATED
public static final UCharacter.IdentifierType DEPRECATED
- Status:
- Stable ICU 75.
-
DEFAULT_IGNORABLE
public static final UCharacter.IdentifierType DEFAULT_IGNORABLE
- Status:
- Stable ICU 75.
-
NOT_NFKC
public static final UCharacter.IdentifierType NOT_NFKC
- Status:
- Stable ICU 75.
-
NOT_XID
public static final UCharacter.IdentifierType NOT_XID
- Status:
- Stable ICU 75.
-
EXCLUSION
public static final UCharacter.IdentifierType EXCLUSION
- Status:
- Stable ICU 75.
-
OBSOLETE
public static final UCharacter.IdentifierType OBSOLETE
- Status:
- Stable ICU 75.
-
TECHNICAL
public static final UCharacter.IdentifierType TECHNICAL
- Status:
- Stable ICU 75.
-
UNCOMMON_USE
public static final UCharacter.IdentifierType UNCOMMON_USE
- Status:
- Stable ICU 75.
-
LIMITED_USE
public static final UCharacter.IdentifierType LIMITED_USE
- Status:
- Stable ICU 75.
-
INCLUSION
public static final UCharacter.IdentifierType INCLUSION
- Status:
- Stable ICU 75.
-
RECOMMENDED
public static final UCharacter.IdentifierType RECOMMENDED
- Status:
- Stable ICU 75.
-
-
Method Detail
-
values
public static UCharacter.IdentifierType[] 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 (UCharacter.IdentifierType c : UCharacter.IdentifierType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UCharacter.IdentifierType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-