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