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