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