public enum ParamMarkType extends Enum<ParamMarkType>
Enum Constant and Description |
---|
COLON |
DOLLAR |
HASH |
NO_MARK |
QUESTION |
Modifier and Type | Method and Description |
---|---|
static ParamMarkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParamMarkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamMarkType NO_MARK
public static final ParamMarkType COLON
public static final ParamMarkType HASH
public static final ParamMarkType QUESTION
public static final ParamMarkType DOLLAR
public static ParamMarkType[] values()
for (ParamMarkType c : ParamMarkType.values()) System.out.println(c);
public static ParamMarkType 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 © 2012–2020 jkniv, copyleft code. All rights reserved.