Package net.sf.jkniv.sqlegance.params
Enum ParamMarkType
- java.lang.Object
-
- java.lang.Enum<ParamMarkType>
-
- net.sf.jkniv.sqlegance.params.ParamMarkType
-
- All Implemented Interfaces:
Serializable,Comparable<ParamMarkType>
public enum ParamMarkType extends Enum<ParamMarkType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ParamMarkTypevalueOf(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.
-
-
-
Enum Constant Detail
-
NO_MARK
public static final ParamMarkType NO_MARK
-
COLON
public static final ParamMarkType COLON
-
HASH
public static final ParamMarkType HASH
-
QUESTION
public static final ParamMarkType QUESTION
-
DOLLAR
public static final ParamMarkType DOLLAR
-
-
Method Detail
-
values
public static ParamMarkType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ParamMarkType c : ParamMarkType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ParamMarkType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-