public enum HttpMethodName extends java.lang.Enum<HttpMethodName>
Enum Constant and Description |
---|
DELETE |
GET |
HEAD |
OPTIONS |
PATCH |
POST |
PUT |
Modifier and Type | Method and Description |
---|---|
static HttpMethodName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpMethodName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpMethodName GET
public static final HttpMethodName POST
public static final HttpMethodName PUT
public static final HttpMethodName DELETE
public static final HttpMethodName HEAD
public static final HttpMethodName PATCH
public static final HttpMethodName OPTIONS
public static HttpMethodName[] values()
for (HttpMethodName c : HttpMethodName.values()) System.out.println(c);
public static HttpMethodName valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2018 Amazon Web Services, Inc. All Rights Reserved.