Package org.la4j.iterator
Enum CursorIterator.IteratorState
- java.lang.Object
-
- java.lang.Enum<CursorIterator.IteratorState>
-
- org.la4j.iterator.CursorIterator.IteratorState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CursorIterator.IteratorState>
- Enclosing class:
- CursorIterator
private static enum CursorIterator.IteratorState extends java.lang.Enum<CursorIterator.IteratorState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TAKEN_FROM_THESE
TAKEN_FROM_THOSE
THESE_ARE_EMPTY
THOSE_ARE_EMPTY
-
Constructor Summary
Constructors Modifier Constructor Description private
IteratorState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CursorIterator.IteratorState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CursorIterator.IteratorState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TAKEN_FROM_THESE
public static final CursorIterator.IteratorState TAKEN_FROM_THESE
-
TAKEN_FROM_THOSE
public static final CursorIterator.IteratorState TAKEN_FROM_THOSE
-
THESE_ARE_EMPTY
public static final CursorIterator.IteratorState THESE_ARE_EMPTY
-
THOSE_ARE_EMPTY
public static final CursorIterator.IteratorState THOSE_ARE_EMPTY
-
-
Method Detail
-
values
public static CursorIterator.IteratorState[] 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 (CursorIterator.IteratorState c : CursorIterator.IteratorState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CursorIterator.IteratorState 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
-
-