public enum HttpMethodName extends Enum<HttpMethodName>
Modifier and Type | Method and Description |
---|---|
static HttpMethodName |
valueOf(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 HttpMethodName[] values()
for (HttpMethodName c : HttpMethodName.values()) System.out.println(c);
public static HttpMethodName 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. All rights reserved.