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