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