public static enum HttpRequestClient.RequestMethod extends Enum<HttpRequestClient.RequestMethod>
| Modifier and Type | Method and Description |
|---|---|
static HttpRequestClient.RequestMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpRequestClient.RequestMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpRequestClient.RequestMethod GET
public static final HttpRequestClient.RequestMethod POST
public static HttpRequestClient.RequestMethod[] values()
for (HttpRequestClient.RequestMethod c : HttpRequestClient.RequestMethod.values()) System.out.println(c);
public static HttpRequestClient.RequestMethod 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 The Apache Software Foundation. All rights reserved.