public enum HttpParamType extends Enum<HttpParamType>
| Enum Constant and Description |
|---|
HEADER |
QUERY_PARAM |
URI_PARAM |
| Modifier and Type | Method and Description |
|---|---|
static HttpParamType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpParamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpParamType QUERY_PARAM
public static final HttpParamType URI_PARAM
public static final HttpParamType HEADER
public static HttpParamType[] values()
for (HttpParamType c : HttpParamType.values()) System.out.println(c);
public static HttpParamType 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 nullCopyright © 2003–2016 MuleSoft, Inc.. All rights reserved.