org.apache.camel.component.http4
Enum HttpMethods

java.lang.Object
  extended by java.lang.Enum<HttpMethods>
      extended by org.apache.camel.component.http4.HttpMethods
All Implemented Interfaces:
Serializable, Comparable<HttpMethods>, Expression

public enum HttpMethods
extends Enum<HttpMethods>
implements Expression


Enum Constant Summary
DELETE
           
GET
           
HEAD
           
OPTIONS
           
POST
           
PUT
           
TRACE
           
 
Method Summary
 org.apache.http.client.methods.HttpRequestBase createMethod(String url)
           
<T> T
evaluate(Exchange exchange, Class<T> type)
           
 boolean isEntityEnclosing()
           
static HttpMethods valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HttpMethods[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

GET

public static final HttpMethods GET

POST

public static final HttpMethods POST

PUT

public static final HttpMethods PUT

DELETE

public static final HttpMethods DELETE

HEAD

public static final HttpMethods HEAD

OPTIONS

public static final HttpMethods OPTIONS

TRACE

public static final HttpMethods TRACE
Method Detail

values

public static HttpMethods[] 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 (HttpMethods c : HttpMethods.values())
    System.out.println(c);

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

valueOf

public static HttpMethods 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 name
NullPointerException - if the argument is null

createMethod

public org.apache.http.client.methods.HttpRequestBase createMethod(String url)

isEntityEnclosing

public final boolean isEntityEnclosing()

evaluate

public <T> T evaluate(Exchange exchange,
                      Class<T> type)
Specified by:
evaluate in interface Expression


Apache CAMEL