private static enum IteratorCursor.Position extends Enum<IteratorCursor.Position>
| Enum Constant and Description |
|---|
AFTER_END |
BEFORE_START |
CLOSED |
OK |
| Modifier and Type | Method and Description |
|---|---|
static IteratorCursor.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IteratorCursor.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IteratorCursor.Position CLOSED
public static final IteratorCursor.Position BEFORE_START
public static final IteratorCursor.Position OK
public static final IteratorCursor.Position AFTER_END
public static IteratorCursor.Position[] values()
for (IteratorCursor.Position c : IteratorCursor.Position.values()) System.out.println(c);
public static IteratorCursor.Position valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2016 The Apache Software Foundation. All rights reserved.