public static enum PersistRequest.Type extends Enum<PersistRequest.Type>
| Enum Constant and Description |
|---|
CALLABLESQL |
DELETE |
INSERT |
ORMUPDATE |
UPDATE |
UPDATESQL |
| Modifier and Type | Method and Description |
|---|---|
static PersistRequest.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersistRequest.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersistRequest.Type INSERT
public static final PersistRequest.Type UPDATE
public static final PersistRequest.Type DELETE
public static final PersistRequest.Type ORMUPDATE
public static final PersistRequest.Type UPDATESQL
public static final PersistRequest.Type CALLABLESQL
public static PersistRequest.Type[] values()
for (PersistRequest.Type c : PersistRequest.Type.values()) System.out.println(c);
public static PersistRequest.Type 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.