public static enum ParamDef.Location extends Enum<ParamDef.Location>
| Modifier and Type | Method and Description |
|---|---|
static ParamDef.Location |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParamDef.Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamDef.Location QUERY
public static final ParamDef.Location PATH
public static final ParamDef.Location HEADER
public static final ParamDef.Location COOKIE
public static ParamDef.Location[] values()
for (ParamDef.Location c : ParamDef.Location.values()) System.out.println(c);
public static ParamDef.Location 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 © 2020 The Cornutum Project. All rights reserved.