public enum ParameterPlacing extends java.lang.Enum<ParameterPlacing>
| Modifier and Type | Method and Description |
|---|---|
static ParameterPlacing |
fromString(java.lang.String key) |
java.lang.String |
getKey() |
static ParameterPlacing |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParameterPlacing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterPlacing QUERY
public static final ParameterPlacing HEADER
public static final ParameterPlacing PATH
public static final ParameterPlacing FORMDATA
public static final ParameterPlacing BODY
public static ParameterPlacing[] values()
for (ParameterPlacing c : ParameterPlacing.values()) System.out.println(c);
public static ParameterPlacing 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 nullpublic static ParameterPlacing fromString(java.lang.String key)
public java.lang.String getKey()