org.eclipse.modisco.jee.webapp.webapp24
Enum HttpMethodTypeBase

java.lang.Object
  extended by java.lang.Enum<HttpMethodTypeBase>
      extended by org.eclipse.modisco.jee.webapp.webapp24.HttpMethodTypeBase
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<HttpMethodTypeBase>

public enum HttpMethodTypeBase
extends java.lang.Enum<HttpMethodTypeBase>

A representation of the literals of the enumeration 'Http Method Type Base', and utility methods for working with them.

See Also:
Webapp24Package.getHttpMethodTypeBase()
Generated:
Model:
extendedMetaData="name='http-methodType_._base'"

Enum Constant Summary
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.
 
Field Summary
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.
 
Method Summary
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're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

GET

public static final HttpMethodTypeBase GET
The 'GET' literal object.

See Also:
GET_VALUE
Generated:
Ordered:

POST

public static final HttpMethodTypeBase POST
The 'POST' literal object.

See Also:
POST_VALUE
Generated:
Ordered:

PUT

public static final HttpMethodTypeBase PUT
The 'PUT' literal object.

See Also:
PUT_VALUE
Generated:
Ordered:

DELETE

public static final HttpMethodTypeBase DELETE
The 'DELETE' literal object.

See Also:
DELETE_VALUE
Generated:
Ordered:

HEAD

public static final HttpMethodTypeBase HEAD
The 'HEAD' literal object.

See Also:
HEAD_VALUE
Generated:
Ordered:

OPTIONS

public static final HttpMethodTypeBase OPTIONS
The 'OPTIONS' literal object.

See Also:
OPTIONS_VALUE
Generated:
Ordered:

TRACE

public static final HttpMethodTypeBase TRACE
The 'TRACE' literal object.

See Also:
TRACE_VALUE
Generated:
Ordered:
Field Detail

GET_VALUE

public static final int GET_VALUE
The 'GET' literal value.

If the meaning of 'GET' literal object isn't clear, there really should be more of a description here...

See Also:
GET, Constant Field Values
Generated:
Model:
Ordered:

POST_VALUE

public static final int POST_VALUE
The 'POST' literal value.

If the meaning of 'POST' literal object isn't clear, there really should be more of a description here...

See Also:
POST, Constant Field Values
Generated:
Model:
Ordered:

PUT_VALUE

public static final int PUT_VALUE
The 'PUT' literal value.

If the meaning of 'PUT' literal object isn't clear, there really should be more of a description here...

See Also:
PUT, Constant Field Values
Generated:
Model:
Ordered:

DELETE_VALUE

public static final int DELETE_VALUE
The 'DELETE' literal value.

If the meaning of 'DELETE' literal object isn't clear, there really should be more of a description here...

See Also:
DELETE, Constant Field Values
Generated:
Model:
Ordered:

HEAD_VALUE

public static final int HEAD_VALUE
The 'HEAD' literal value.

If the meaning of 'HEAD' literal object isn't clear, there really should be more of a description here...

See Also:
HEAD, Constant Field Values
Generated:
Model:
Ordered:

OPTIONS_VALUE

public static final int OPTIONS_VALUE
The 'OPTIONS' literal value.

If the meaning of 'OPTIONS' literal object isn't clear, there really should be more of a description here...

See Also:
OPTIONS, Constant Field Values
Generated:
Model:
Ordered:

TRACE_VALUE

public static final int TRACE_VALUE
The 'TRACE' literal value.

If the meaning of 'TRACE' literal object isn't clear, there really should be more of a description here...

See Also:
TRACE, Constant Field Values
Generated:
Model:
Ordered:

VALUES

public static final java.util.List<HttpMethodTypeBase> VALUES
A public read-only list of all the 'Http Method Type Base' enumerators.

Generated:
Method Detail

values

public static final HttpMethodTypeBase[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(HttpMethodTypeBase c : HttpMethodTypeBase.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static HttpMethodTypeBase valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

get

public static HttpMethodTypeBase get(java.lang.String literal)
Returns the 'Http Method Type Base' literal with the specified literal value.

Generated:

getByName

public static HttpMethodTypeBase getByName(java.lang.String name)
Returns the 'Http Method Type Base' literal with the specified name.

Generated:

get

public static HttpMethodTypeBase get(int value)
Returns the 'Http Method Type Base' literal with the specified integer value.

Generated:

getValue

public int getValue()

Generated:

getName

public java.lang.String getName()

Generated:

getLiteral

public java.lang.String getLiteral()

Generated:

toString

public java.lang.String toString()
Returns the literal value of the enumerator, which is its string representation.

Overrides:
toString in class java.lang.Enum<HttpMethodTypeBase>
Generated: