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