public static enum PersistRequestUpdateSql.SqlType extends Enum<PersistRequestUpdateSql.SqlType>
| Enum Constant and Description |
|---|
SQL_DELETE |
SQL_INSERT |
SQL_UNKNOWN |
SQL_UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static PersistRequestUpdateSql.SqlType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersistRequestUpdateSql.SqlType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersistRequestUpdateSql.SqlType SQL_UPDATE
public static final PersistRequestUpdateSql.SqlType SQL_DELETE
public static final PersistRequestUpdateSql.SqlType SQL_INSERT
public static final PersistRequestUpdateSql.SqlType SQL_UNKNOWN
public static PersistRequestUpdateSql.SqlType[] values()
for (PersistRequestUpdateSql.SqlType c : PersistRequestUpdateSql.SqlType.values()) System.out.println(c);
public static PersistRequestUpdateSql.SqlType 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 © 2014. All Rights Reserved.