public enum HttpMethodTypeBase extends java.lang.Enum<HttpMethodTypeBase>
Webapp24Package.getHttpMethodTypeBase()| Enum Constant and Description |
|---|
DELETE
The 'DELETE' literal object.
|
GET
The 'GET' literal object.
|
HEAD
The 'HEAD' literal object.
|
OPTIONS
The 'OPTIONS' literal object.
|
POST
The 'POST' literal object.
|
PUT
The 'PUT' literal object.
|
TRACE
The 'TRACE' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
DELETE_VALUE
The 'DELETE' literal value.
|
static int |
GET_VALUE
The 'GET' literal value.
|
static int |
HEAD_VALUE
The 'HEAD' literal value.
|
static int |
OPTIONS_VALUE
The 'OPTIONS' literal value.
|
static int |
POST_VALUE
The 'POST' literal value.
|
static int |
PUT_VALUE
The 'PUT' literal value.
|
static int |
TRACE_VALUE
The 'TRACE' literal value.
|
static java.util.List<HttpMethodTypeBase> |
VALUES
A public read-only list of all the 'Http Method Type Base' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static HttpMethodTypeBase |
get(int value)
Returns the 'Http Method Type Base' literal with the specified integer value.
|
static HttpMethodTypeBase |
get(java.lang.String literal)
Returns the 'Http Method Type Base' literal with the specified literal value.
|
static HttpMethodTypeBase |
getByName(java.lang.String name)
Returns the 'Http Method Type Base' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static HttpMethodTypeBase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpMethodTypeBase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpMethodTypeBase GET
GET_VALUEpublic static final HttpMethodTypeBase POST
POST_VALUEpublic static final HttpMethodTypeBase PUT
PUT_VALUEpublic static final HttpMethodTypeBase DELETE
DELETE_VALUEpublic static final HttpMethodTypeBase HEAD
HEAD_VALUEpublic static final HttpMethodTypeBase OPTIONS
OPTIONS_VALUEpublic static final HttpMethodTypeBase TRACE
TRACE_VALUEpublic static final int GET_VALUE
If the meaning of 'GET' literal object isn't clear, there really should be more of a description here...
GET,
Constant Field Valuespublic static final int POST_VALUE
If the meaning of 'POST' literal object isn't clear, there really should be more of a description here...
POST,
Constant Field Valuespublic static final int PUT_VALUE
If the meaning of 'PUT' literal object isn't clear, there really should be more of a description here...
PUT,
Constant Field Valuespublic static final int DELETE_VALUE
If the meaning of 'DELETE' literal object isn't clear, there really should be more of a description here...
DELETE,
Constant Field Valuespublic static final int HEAD_VALUE
If the meaning of 'HEAD' literal object isn't clear, there really should be more of a description here...
HEAD,
Constant Field Valuespublic static final int OPTIONS_VALUE
If the meaning of 'OPTIONS' literal object isn't clear, there really should be more of a description here...
OPTIONS,
Constant Field Valuespublic static final int TRACE_VALUE
If the meaning of 'TRACE' literal object isn't clear, there really should be more of a description here...
TRACE,
Constant Field Valuespublic static final java.util.List<HttpMethodTypeBase> VALUES
public static HttpMethodTypeBase[] values()
for (HttpMethodTypeBase c : HttpMethodTypeBase.values()) System.out.println(c);
public static HttpMethodTypeBase valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static HttpMethodTypeBase get(java.lang.String literal)
public static HttpMethodTypeBase getByName(java.lang.String name)
public static HttpMethodTypeBase get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString in class java.lang.Enum<HttpMethodTypeBase>