Package com.ibm.icu.impl.coll
Enum FCDIterCollationIterator.State
- java.lang.Object
-
- java.lang.Enum<FCDIterCollationIterator.State>
-
- com.ibm.icu.impl.coll.FCDIterCollationIterator.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FCDIterCollationIterator.State>
- Enclosing class:
- FCDIterCollationIterator
private static enum FCDIterCollationIterator.State extends java.lang.Enum<FCDIterCollationIterator.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IN_NORM_ITER_AT_LIMIT
The input text [start..limit[ failed the FCD check and was normalized.IN_NORM_ITER_AT_START
The input text [start..limit[ failed the FCD check and was normalized.ITER_CHECK_BWD
The input text [(iter index)..limit[ passes the FCD check.ITER_CHECK_FWD
The input text [start..(iter index)[ passes the FCD check.ITER_IN_FCD_SEGMENT
The input text [start..limit[ passes the FCD check.
-
Constructor Summary
Constructors Modifier Constructor Description private
State()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FCDIterCollationIterator.State
valueOf(java.lang.String name)
Returns 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 Detail
-
ITER_CHECK_FWD
public static final FCDIterCollationIterator.State ITER_CHECK_FWD
The input text [start..(iter index)[ passes the FCD check. Moving forward checks incrementally. pos & limit are undefined.
-
ITER_CHECK_BWD
public static final FCDIterCollationIterator.State 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
public static final FCDIterCollationIterator.State ITER_IN_FCD_SEGMENT
The input text [start..limit[ passes the FCD check. pos tracks the current text index.
-
IN_NORM_ITER_AT_LIMIT
public static final FCDIterCollationIterator.State 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
public static final FCDIterCollationIterator.State 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.
-
-
Method Detail
-
values
public static FCDIterCollationIterator.State[] 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 (FCDIterCollationIterator.State c : FCDIterCollationIterator.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FCDIterCollationIterator.State 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
-
-