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