public static enum HttpBinding.Location extends java.lang.Enum<HttpBinding.Location>
Enum Constant and Description |
---|
DOCUMENT |
HEADER |
LABEL |
PAYLOAD |
PREFIX_HEADERS |
QUERY |
QUERY_PARAMS |
RESPONSE_CODE |
UNBOUND |
Modifier and Type | Method and Description |
---|---|
static HttpBinding.Location |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpBinding.Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpBinding.Location LABEL
public static final HttpBinding.Location DOCUMENT
public static final HttpBinding.Location PAYLOAD
public static final HttpBinding.Location HEADER
public static final HttpBinding.Location PREFIX_HEADERS
public static final HttpBinding.Location QUERY
public static final HttpBinding.Location QUERY_PARAMS
public static final HttpBinding.Location RESPONSE_CODE
public static final HttpBinding.Location UNBOUND
public static HttpBinding.Location[] values()
for (HttpBinding.Location c : HttpBinding.Location.values()) System.out.println(c);
public static HttpBinding.Location 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 null