public enum GetMode extends Enum<GetMode>
| Enum Constant and Description |
|---|
NEXT |
NEXT_DUP |
NEXT_NODUP |
PREV |
PREV_DUP |
PREV_NODUP |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isForward() |
String |
toString() |
static GetMode |
valueOf(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(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 nullpublic final boolean isForward()
Copyright © 2024. All rights reserved.