public enum PersistOp extends Enum<PersistOp>
| Modifier and Type | Method and Description |
|---|---|
static PersistOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersistOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersistOp persist
public static final PersistOp merge
public static final PersistOp refresh
public static final PersistOp contains
public static PersistOp[] values()
for (PersistOp c : PersistOp.values()) System.out.println(c);
public static PersistOp 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 nullThis documentation is licensed by Andrew Bowley under the GPLv3 License.