public static enum HTTPCall.HTTPMETHOD extends Enum<HTTPCall.HTTPMETHOD>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static HTTPCall.HTTPMETHOD |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HTTPCall.HTTPMETHOD[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HTTPCall.HTTPMETHOD HEAD
public static final HTTPCall.HTTPMETHOD GET
public static final HTTPCall.HTTPMETHOD POST
public static final HTTPCall.HTTPMETHOD PUT
public static final HTTPCall.HTTPMETHOD DELETE
public static HTTPCall.HTTPMETHOD[] values()
for (HTTPCall.HTTPMETHOD c : HTTPCall.HTTPMETHOD.values()) System.out.println(c);
public static HTTPCall.HTTPMETHOD 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 String toString()
toString in class Enum<HTTPCall.HTTPMETHOD>Copyright © 2018. All Rights Reserved.