public static enum VertxHttpEndpointBuilderFactory.HttpMethod extends Enum<VertxHttpEndpointBuilderFactory.HttpMethod>
io.vertx.core.http.HttpMethod enum.| Enum Constant and Description |
|---|
CONNECT |
DELETE |
GET |
HEAD |
OPTIONS |
OTHER |
PATCH |
POST |
PUT |
TRACE |
| Modifier and Type | Method and Description |
|---|---|
static VertxHttpEndpointBuilderFactory.HttpMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VertxHttpEndpointBuilderFactory.HttpMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VertxHttpEndpointBuilderFactory.HttpMethod OPTIONS
public static final VertxHttpEndpointBuilderFactory.HttpMethod GET
public static final VertxHttpEndpointBuilderFactory.HttpMethod HEAD
public static final VertxHttpEndpointBuilderFactory.HttpMethod POST
public static final VertxHttpEndpointBuilderFactory.HttpMethod PUT
public static final VertxHttpEndpointBuilderFactory.HttpMethod DELETE
public static final VertxHttpEndpointBuilderFactory.HttpMethod TRACE
public static final VertxHttpEndpointBuilderFactory.HttpMethod CONNECT
public static final VertxHttpEndpointBuilderFactory.HttpMethod PATCH
public static final VertxHttpEndpointBuilderFactory.HttpMethod OTHER
public static VertxHttpEndpointBuilderFactory.HttpMethod[] values()
for (VertxHttpEndpointBuilderFactory.HttpMethod c : VertxHttpEndpointBuilderFactory.HttpMethod.values()) System.out.println(c);
public static VertxHttpEndpointBuilderFactory.HttpMethod 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 nullApache Camel