public enum EntityManagerMethod extends Enum<EntityManagerMethod>
Modifier and Type | Method and Description |
---|---|
static EntityManagerMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityManagerMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityManagerMethod PERSIST
public static final EntityManagerMethod MERGE
public static final EntityManagerMethod REMOVE
public static final EntityManagerMethod FIND
public static final EntityManagerMethod GET_REFERENCE
public static final EntityManagerMethod FLUSH
public static final EntityManagerMethod SET_FLUSH_MODE
public static final EntityManagerMethod GET_FLUSH_MODE
public static final EntityManagerMethod LOCK
public static final EntityManagerMethod REFRESH
public static final EntityManagerMethod CLEAR
public static final EntityManagerMethod CONTAINS
public static final EntityManagerMethod CREATE_QUERY
public static final EntityManagerMethod CREATE_NAMED_QUERY
public static final EntityManagerMethod CREATE_NATIVE_QUERY_STRING
public static final EntityManagerMethod CREATE_NATIVE_QUERY_STRING_CLASS
public static final EntityManagerMethod CREATE_NATIVE_QUERY_STRING_STRING
public static final EntityManagerMethod JOIN_TRANSACTION
public static final EntityManagerMethod GET_DELEGATE
public static final EntityManagerMethod CLOSE
public static final EntityManagerMethod IS_OPEN
public static final EntityManagerMethod GET_TRANSACTION
public static EntityManagerMethod[] values()
for (EntityManagerMethod c : EntityManagerMethod.values()) System.out.println(c);
public static EntityManagerMethod 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 © 2018. All rights reserved.