public static enum MethodParam.TypeParam extends java.lang.Enum<MethodParam.TypeParam>
| Enum Constant and Description |
|---|
PATH_PARAM |
QUERY_PARAM |
REQUEST_BODY |
| Modifier and Type | Method and Description |
|---|---|
static MethodParam.TypeParam |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MethodParam.TypeParam[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodParam.TypeParam PATH_PARAM
public static final MethodParam.TypeParam QUERY_PARAM
public static final MethodParam.TypeParam REQUEST_BODY
public static MethodParam.TypeParam[] values()
for (MethodParam.TypeParam c : MethodParam.TypeParam.values()) System.out.println(c);
public static MethodParam.TypeParam 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 null