public enum PreparedStatementType extends Enum<PreparedStatementType>
| Enum Constant and Description |
|---|
ADD |
DELETE |
READ |
READ_LAST_ELEMENT |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static PreparedStatementType |
valueOf(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(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 © 2016. All rights reserved.