public enum PreparedStatementType extends java.lang.Enum<PreparedStatementType>
Enum Constant and Description |
---|
ADD |
DELETE |
READ |
READ_LAST_ELEMENT |
UPDATE |
Modifier and Type | Method and Description |
---|---|
static PreparedStatementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PreparedStatementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreparedStatementType READ
public static final PreparedStatementType READ_LAST_ELEMENT
public static final PreparedStatementType ADD
public static final PreparedStatementType UPDATE
public static final PreparedStatementType DELETE
public static PreparedStatementType[] values()
for (PreparedStatementType c : PreparedStatementType.values()) System.out.println(c);
public static PreparedStatementType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null