Uses of Class
org.hibernate.generator.EventType
-
Packages that use EventType Package Description org.hibernate.annotations A set of mapping annotations which extend the O/R mapping annotations defined by JPA.org.hibernate.generator This package defines an abstraction over all kinds of automatic value generation, including id generation and version number generation.org.hibernate.id This package and its subpackages, especiallyorg.hibernate.id.enhanced, contain the built-in id generators, all of which implement eitherIdentifierGeneratororPostInsertIdentifierGenerator.org.hibernate.id.uuid Contains theUuidGenerator.org.hibernate.tuple Most contracts here have been replaced by the new runtime mapping model. -
-
Uses of EventType in org.hibernate.annotations
Methods in org.hibernate.annotations that return EventType Modifier and Type Method Description EventType[]event()Determines when the timestamp is generated.EventType[]event()Specifies the events that cause the value to be generated by the database.Methods in org.hibernate.annotations that return types with arguments of type EventType Modifier and Type Method Description EnumSet<EventType>GenerationTime. eventTypes()Deprecated. -
Uses of EventType in org.hibernate.generator
Fields in org.hibernate.generator with type parameters of type EventType Modifier and Type Field Description static EnumSet<EventType>EventTypeSets. ALLstatic EnumSet<EventType>EventTypeSets. INSERT_AND_UPDATEstatic EnumSet<EventType>EventTypeSets. INSERT_ONLYstatic EnumSet<EventType>EventTypeSets. NONEstatic EnumSet<EventType>EventTypeSets. UPDATE_ONLYMethods in org.hibernate.generator that return EventType Modifier and Type Method Description static EventTypeEventType. valueOf(String name)Returns the enum constant of this type with the specified name.static EventType[]EventType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate.generator that return types with arguments of type EventType Modifier and Type Method Description static EnumSet<EventType>EventTypeSets. fromArray(EventType[] types)EnumSet<EventType>Generator. getEventTypes()The event types for which this generator should be called to produce a new value.Methods in org.hibernate.generator with parameters of type EventType Modifier and Type Method Description static EnumSet<EventType>EventTypeSets. fromArray(EventType[] types)ObjectBeforeExecutionGenerator. generate(SharedSessionContractImplementor session, Object owner, Object currentValue, EventType eventType)Generate a value. -
Uses of EventType in org.hibernate.id
Methods in org.hibernate.id that return types with arguments of type EventType Modifier and Type Method Description default EnumSet<EventType>IdentifierGenerator. getEventTypes()default EnumSet<EventType>PostInsertIdentifierGenerator. getEventTypes()Methods in org.hibernate.id with parameters of type EventType Modifier and Type Method Description default ObjectIdentifierGenerator. generate(SharedSessionContractImplementor session, Object owner, Object currentValue, EventType eventType)Generate a value. -
Uses of EventType in org.hibernate.id.uuid
Methods in org.hibernate.id.uuid that return types with arguments of type EventType Modifier and Type Method Description EnumSet<EventType>UuidGenerator. getEventTypes()Methods in org.hibernate.id.uuid with parameters of type EventType Modifier and Type Method Description ObjectUuidGenerator. generate(SharedSessionContractImplementor session, Object owner, Object currentValue, EventType eventType) -
Uses of EventType in org.hibernate.tuple
Methods in org.hibernate.tuple that return types with arguments of type EventType Modifier and Type Method Description default EnumSet<EventType>ValueGeneration. getEventTypes()Deprecated, for removal: This API element is subject to removal in a future version.EnumSet<EventType>VmValueGeneration. getEventTypes()Deprecated.Methods in org.hibernate.tuple with parameters of type EventType Modifier and Type Method Description default ObjectValueGeneration. generate(SharedSessionContractImplementor session, Object owner, Object currentValue, EventType eventType)Deprecated, for removal: This API element is subject to removal in a future version.ObjectVmValueGeneration. generate(SharedSessionContractImplementor session, Object owner, Object currentValue, EventType eventType)Deprecated.
-