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