|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<SMInputCursor.State>
org.codehaus.staxmate.in.SMInputCursor.State
protected static enum SMInputCursor.State
| Enum Constant Summary | |
|---|---|
ACTIVE
Active means that cursor's data is valid and can be accessed; plus it can be advanced as well. |
|
CLOSED
Closed cursors are ones that do not point to accessible data, nor can be advanced any further. |
|
HAS_CHILD
Status that indicates that although cursor would be active, there is a child cursor active which means that this cursor can not be used to access data: only the innermost child cursor can. |
|
INITIAL
Initial means that the cursor has been constructed, but hasn't yet been advanced. |
|
| Method Summary | |
|---|---|
static SMInputCursor.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SMInputCursor.State[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final SMInputCursor.State INITIAL
public static final SMInputCursor.State ACTIVE
public static final SMInputCursor.State HAS_CHILD
public static final SMInputCursor.State CLOSED
| Method Detail |
|---|
public static final SMInputCursor.State[] values()
for(SMInputCursor.State c : SMInputCursor.State.values())
System.out.println(c);
public static SMInputCursor.State valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||