org.apache.camel.component.http
Enum HttpMethods
java.lang.Object
java.lang.Enum<HttpMethods>
org.apache.camel.component.http.HttpMethods
- All Implemented Interfaces:
- Serializable, Comparable<HttpMethods>, Expression
public enum HttpMethods
- extends Enum<HttpMethods>
- implements Expression
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
values
public static final HttpMethods[] 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(HttpMethods c : HttpMethods.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're 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
createMethod
public org.apache.commons.httpclient.HttpMethod createMethod(String url)
createMethod
public org.apache.commons.httpclient.HttpMethod createMethod()
isEntityEnclosing
public final boolean isEntityEnclosing()
evaluate
public <T> T evaluate(Exchange exchange,
Class<T> type)
- Specified by:
evaluate
in interface Expression
Copyright © 2009 Apache Software Foundation. All Rights Reserved.