Uses of Enum Class
org.hibernate.ReplicationMode
Packages that use ReplicationMode
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory
, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session
and StatelessSession
,
the most important APIs exposing persistence-related operations for
entities.This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
This package defines a default set of event listeners that implement
the default behaviors of Hibernate session operations.
Defines the event types and event listener interfaces for
events produced by the stateful
Session
.An internal package containing implementations of central Hibernate APIs,
mostly defined in
org.hibernate
.-
Uses of ReplicationMode in org.hibernate
Methods in org.hibernate that return ReplicationModeModifier and TypeMethodDescriptionstatic ReplicationMode
Deprecated.Returns the enum constant of this class with the specified name.static ReplicationMode[]
ReplicationMode.values()
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.hibernate with parameters of type ReplicationModeModifier and TypeMethodDescriptionvoid
Session.replicate
(Object object, ReplicationMode replicationMode) Deprecated.With no real replacement.void
Session.replicate
(String entityName, Object object, ReplicationMode replicationMode) Deprecated.With no real replacement. -
Uses of ReplicationMode in org.hibernate.engine.spi
Fields in org.hibernate.engine.spi with type parameters of type ReplicationModeModifier and TypeFieldDescriptionstatic final CascadingAction<ReplicationMode>
CascadingActions.REPLICATE
Methods in org.hibernate.engine.spi with parameters of type ReplicationModeModifier and TypeMethodDescriptionvoid
SessionDelegatorBaseImpl.replicate
(Object object, ReplicationMode replicationMode) void
SessionDelegatorBaseImpl.replicate
(String entityName, Object object, ReplicationMode replicationMode) void
SessionLazyDelegator.replicate
(Object object, ReplicationMode replicationMode) Deprecated.void
SessionLazyDelegator.replicate
(String entityName, Object object, ReplicationMode replicationMode) Deprecated. -
Uses of ReplicationMode in org.hibernate.event.internal
Methods in org.hibernate.event.internal that return types with arguments of type ReplicationModeModifier and TypeMethodDescriptionprotected CascadingAction<ReplicationMode>
DefaultReplicateEventListener.getCascadeAction()
Deprecated. -
Uses of ReplicationMode in org.hibernate.event.spi
Methods in org.hibernate.event.spi that return ReplicationModeMethods in org.hibernate.event.spi with parameters of type ReplicationModeModifier and TypeMethodDescriptionvoid
ReplicateEvent.setReplicationMode
(ReplicationMode replicationMode) Constructors in org.hibernate.event.spi with parameters of type ReplicationModeModifierConstructorDescriptionReplicateEvent
(Object object, ReplicationMode replicationMode, EventSource source) ReplicateEvent
(String entityName, Object object, ReplicationMode replicationMode, EventSource source) -
Uses of ReplicationMode in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type ReplicationModeModifier and TypeMethodDescriptionvoid
SessionImpl.replicate
(Object obj, ReplicationMode replicationMode) void
SessionImpl.replicate
(String entityName, Object obj, ReplicationMode replicationMode)