Package org.hibernate.boot.jaxb.cfg.spi
Enum JaxbCfgEventTypeEnum
- java.lang.Object
-
- java.lang.Enum<JaxbCfgEventTypeEnum>
-
- org.hibernate.boot.jaxb.cfg.spi.JaxbCfgEventTypeEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<JaxbCfgEventTypeEnum>
public enum JaxbCfgEventTypeEnum extends Enum<JaxbCfgEventTypeEnum>
Java class for EventTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EventTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="auto-flush"/> <enumeration value="create"/> <enumeration value="create-onflush"/> <enumeration value="delete"/> <enumeration value="dirty-check"/> <enumeration value="evict"/> <enumeration value="flush"/> <enumeration value="flush-entity"/> <enumeration value="load"/> <enumeration value="load-collection"/> <enumeration value="lock"/> <enumeration value="merge"/> <enumeration value="post-collection-recreate"/> <enumeration value="post-collection-remove"/> <enumeration value="post-collection-update"/> <enumeration value="post-commit-delete"/> <enumeration value="post-commit-insert"/> <enumeration value="post-commit-update"/> <enumeration value="post-delete"/> <enumeration value="post-insert"/> <enumeration value="post-load"/> <enumeration value="post-update"/> <enumeration value="pre-collection-recreate"/> <enumeration value="pre-collection-remove"/> <enumeration value="pre-collection-update"/> <enumeration value="pre-delete"/> <enumeration value="pre-insert"/> <enumeration value="pre-load"/> <enumeration value="pre-update"/> <enumeration value="refresh"/> <enumeration value="replicate"/> <enumeration value="save"/> <enumeration value="save-update"/> <enumeration value="update"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JaxbCfgEventTypeEnum
fromValue(String v)
String
value()
static JaxbCfgEventTypeEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static JaxbCfgEventTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTO_FLUSH
public static final JaxbCfgEventTypeEnum AUTO_FLUSH
-
CREATE
public static final JaxbCfgEventTypeEnum CREATE
-
CREATE_ONFLUSH
public static final JaxbCfgEventTypeEnum CREATE_ONFLUSH
-
DELETE
public static final JaxbCfgEventTypeEnum DELETE
-
DIRTY_CHECK
public static final JaxbCfgEventTypeEnum DIRTY_CHECK
-
EVICT
public static final JaxbCfgEventTypeEnum EVICT
-
FLUSH
public static final JaxbCfgEventTypeEnum FLUSH
-
FLUSH_ENTITY
public static final JaxbCfgEventTypeEnum FLUSH_ENTITY
-
LOAD
public static final JaxbCfgEventTypeEnum LOAD
-
LOAD_COLLECTION
public static final JaxbCfgEventTypeEnum LOAD_COLLECTION
-
LOCK
public static final JaxbCfgEventTypeEnum LOCK
-
MERGE
public static final JaxbCfgEventTypeEnum MERGE
-
POST_COLLECTION_RECREATE
public static final JaxbCfgEventTypeEnum POST_COLLECTION_RECREATE
-
POST_COLLECTION_REMOVE
public static final JaxbCfgEventTypeEnum POST_COLLECTION_REMOVE
-
POST_COLLECTION_UPDATE
public static final JaxbCfgEventTypeEnum POST_COLLECTION_UPDATE
-
POST_COMMIT_DELETE
public static final JaxbCfgEventTypeEnum POST_COMMIT_DELETE
-
POST_COMMIT_INSERT
public static final JaxbCfgEventTypeEnum POST_COMMIT_INSERT
-
POST_COMMIT_UPDATE
public static final JaxbCfgEventTypeEnum POST_COMMIT_UPDATE
-
POST_DELETE
public static final JaxbCfgEventTypeEnum POST_DELETE
-
POST_INSERT
public static final JaxbCfgEventTypeEnum POST_INSERT
-
POST_LOAD
public static final JaxbCfgEventTypeEnum POST_LOAD
-
POST_UPDATE
public static final JaxbCfgEventTypeEnum POST_UPDATE
-
PRE_COLLECTION_RECREATE
public static final JaxbCfgEventTypeEnum PRE_COLLECTION_RECREATE
-
PRE_COLLECTION_REMOVE
public static final JaxbCfgEventTypeEnum PRE_COLLECTION_REMOVE
-
PRE_COLLECTION_UPDATE
public static final JaxbCfgEventTypeEnum PRE_COLLECTION_UPDATE
-
PRE_DELETE
public static final JaxbCfgEventTypeEnum PRE_DELETE
-
PRE_INSERT
public static final JaxbCfgEventTypeEnum PRE_INSERT
-
PRE_LOAD
public static final JaxbCfgEventTypeEnum PRE_LOAD
-
PRE_UPDATE
public static final JaxbCfgEventTypeEnum PRE_UPDATE
-
REFRESH
public static final JaxbCfgEventTypeEnum REFRESH
-
REPLICATE
public static final JaxbCfgEventTypeEnum REPLICATE
-
SAVE
public static final JaxbCfgEventTypeEnum SAVE
-
SAVE_UPDATE
public static final JaxbCfgEventTypeEnum SAVE_UPDATE
-
UPDATE
public static final JaxbCfgEventTypeEnum UPDATE
-
-
Method Detail
-
values
public static JaxbCfgEventTypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JaxbCfgEventTypeEnum c : JaxbCfgEventTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JaxbCfgEventTypeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public String value()
-
fromValue
public static JaxbCfgEventTypeEnum fromValue(String v)
-
-