public static enum Param.Type extends Enum<Param.Type>
| Enum Constant and Description |
|---|
COOKIE_PARAM |
FORM_PARAM |
HEADER_PARAM |
MATRIX_PARAM |
PATH_PARAM |
QUERY_PARAM |
| Modifier and Type | Method and Description |
|---|---|
static Param.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Param.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Param.Type FORM_PARAM
public static final Param.Type QUERY_PARAM
public static final Param.Type MATRIX_PARAM
public static final Param.Type HEADER_PARAM
public static final Param.Type PATH_PARAM
public static final Param.Type COOKIE_PARAM
public static Param.Type[] values()
for (Param.Type c : Param.Type.values()) System.out.println(c);
public static Param.Type 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 © 2015. All rights reserved.