Package com.ibm.icu.impl.coll
Enum FCDIterCollationIterator.State
- All Implemented Interfaces:
Serializable
,Comparable<FCDIterCollationIterator.State>
,java.lang.constant.Constable
- Enclosing class:
- FCDIterCollationIterator
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe input text [start..limit[ failed the FCD check and was normalized.The input text [start..limit[ failed the FCD check and was normalized.The input text [(iter index)..limit[ passes the FCD check.The input text [start..(iter index)[ passes the FCD check.The input text [start..limit[ passes the FCD check. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static FCDIterCollationIterator.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ITER_CHECK_FWD
The input text [start..(iter index)[ passes the FCD check. Moving forward checks incrementally. pos & limit are undefined. -
ITER_CHECK_BWD
The input text [(iter index)..limit[ passes the FCD check. Moving backward checks incrementally. start & pos are undefined. -
ITER_IN_FCD_SEGMENT
The input text [start..limit[ passes the FCD check. pos tracks the current text index. -
IN_NORM_ITER_AT_LIMIT
The input text [start..limit[ failed the FCD check and was normalized. pos tracks the current index in the normalized string. The text iterator is at the limit index. -
IN_NORM_ITER_AT_START
The input text [start..limit[ failed the FCD check and was normalized. pos tracks the current index in the normalized string. The text iterator is at the start index.
-
-
Constructor Details
-
State
private State()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-