Enum VertxHttpEndpointBuilderFactory.HttpMethod
- java.lang.Object
-
- java.lang.Enum<VertxHttpEndpointBuilderFactory.HttpMethod>
-
- org.apache.camel.builder.endpoint.dsl.VertxHttpEndpointBuilderFactory.HttpMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<VertxHttpEndpointBuilderFactory.HttpMethod>
- Enclosing interface:
- VertxHttpEndpointBuilderFactory
public static enum VertxHttpEndpointBuilderFactory.HttpMethod extends Enum<VertxHttpEndpointBuilderFactory.HttpMethod>
Proxy enum forio.vertx.core.http.HttpMethod
enum.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
OPTIONS
public static final VertxHttpEndpointBuilderFactory.HttpMethod OPTIONS
-
GET
public static final VertxHttpEndpointBuilderFactory.HttpMethod GET
-
HEAD
public static final VertxHttpEndpointBuilderFactory.HttpMethod HEAD
-
POST
public static final VertxHttpEndpointBuilderFactory.HttpMethod POST
-
PUT
public static final VertxHttpEndpointBuilderFactory.HttpMethod PUT
-
DELETE
public static final VertxHttpEndpointBuilderFactory.HttpMethod DELETE
-
TRACE
public static final VertxHttpEndpointBuilderFactory.HttpMethod TRACE
-
CONNECT
public static final VertxHttpEndpointBuilderFactory.HttpMethod CONNECT
-
PATCH
public static final VertxHttpEndpointBuilderFactory.HttpMethod PATCH
-
OTHER
public static final VertxHttpEndpointBuilderFactory.HttpMethod OTHER
-
-
Method Detail
-
values
public static VertxHttpEndpointBuilderFactory.HttpMethod[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VertxHttpEndpointBuilderFactory.HttpMethod c : VertxHttpEndpointBuilderFactory.HttpMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VertxHttpEndpointBuilderFactory.HttpMethod valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-