public enum RequestMode extends java.lang.Enum<RequestMode>
| Enum Constant and Description |
|---|
OFFLINE
Offline Request
|
ONLINE
Online Request
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getType()
Get the mode as string
|
static RequestMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestMode ONLINE
public static final RequestMode OFFLINE
public static RequestMode[] values()
for (RequestMode c : RequestMode.values()) System.out.println(c);
public static RequestMode 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 java.lang.String getType()