protected static enum MethodInvoker.RestParameterType extends Enum<MethodInvoker.RestParameterType>
| Enum Constant and Description |
|---|
body |
cookie |
form |
header |
path |
query |
| Modifier and Type | Method and Description |
|---|---|
static MethodInvoker.RestParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MethodInvoker.RestParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodInvoker.RestParameterType query
public static final MethodInvoker.RestParameterType header
public static final MethodInvoker.RestParameterType form
public static final MethodInvoker.RestParameterType cookie
public static final MethodInvoker.RestParameterType path
public static final MethodInvoker.RestParameterType body
public static MethodInvoker.RestParameterType[] values()
for (MethodInvoker.RestParameterType c : MethodInvoker.RestParameterType.values()) System.out.println(c);
public static MethodInvoker.RestParameterType 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 © 2016. All rights reserved.