Enum Constant and Description |
---|
NEXT |
NEXT_DUP |
NEXT_NODUP |
PREV |
PREV_DUP |
PREV_NODUP |
Modifier and Type | Method and Description |
---|---|
boolean |
isForward() |
java.lang.String |
toString() |
static GetMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GetMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GetMode NEXT
public static final GetMode PREV
public static final GetMode NEXT_DUP
public static final GetMode PREV_DUP
public static final GetMode NEXT_NODUP
public static final GetMode PREV_NODUP
public static GetMode[] values()
for (GetMode c : GetMode.values()) System.out.println(c);
public static GetMode 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 namejava.lang.NullPointerException
- if the argument is nullpublic final boolean isForward()
public java.lang.String toString()
toString
in class java.lang.Enum<GetMode>
Copyright (c) 2004-2012 Oracle. All rights reserved.