public static enum HTTPClient.RequestType extends java.lang.Enum<HTTPClient.RequestType>
| Enum Constant and Description |
|---|
BEACON |
NEW_SESSION |
STATUS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getRequestName() |
static HTTPClient.RequestType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HTTPClient.RequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HTTPClient.RequestType STATUS
public static final HTTPClient.RequestType BEACON
public static final HTTPClient.RequestType NEW_SESSION
public static HTTPClient.RequestType[] values()
for (HTTPClient.RequestType c : HTTPClient.RequestType.values()) System.out.println(c);
public static HTTPClient.RequestType 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 getRequestName()