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