public enum HttpParameterPlacement extends Enum<HttpParameterPlacement>
| Enum Constant and Description |
|---|
HEADERS
The parameter will be sent as a header
|
QUERY_PARAMS
The parameter will be sent as a query parameter
|
| Modifier and Type | Method and Description |
|---|---|
static HttpParameterPlacement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpParameterPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpParameterPlacement QUERY_PARAMS
public static final HttpParameterPlacement HEADERS
public static HttpParameterPlacement[] values()
for (HttpParameterPlacement c : HttpParameterPlacement.values()) System.out.println(c);
public static HttpParameterPlacement 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 © 2022. All rights reserved.