Uses of Class
org.hibernate.ReplicationMode
-
Packages that use ReplicationMode Package Description org.hibernate org.hibernate.engine.spi org.hibernate.event.spi -
-
Uses of ReplicationMode in org.hibernate
Methods in org.hibernate that return ReplicationMode Modifier and Type Method Description static ReplicationMode
ReplicationMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ReplicationMode[]
ReplicationMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate with parameters of type ReplicationMode Modifier and Type Method Description void
Session. replicate(java.lang.Object object, ReplicationMode replicationMode)
Persist the state of the given detached instance, reusing the current identifier value.void
Session. replicate(java.lang.String entityName, java.lang.Object object, ReplicationMode replicationMode)
Persist the state of the given detached instance, reusing the current identifier value. -
Uses of ReplicationMode in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type ReplicationMode Modifier and Type Method Description void
SessionDelegatorBaseImpl. replicate(java.lang.Object object, ReplicationMode replicationMode)
void
SessionDelegatorBaseImpl. replicate(java.lang.String entityName, java.lang.Object object, ReplicationMode replicationMode)
void
SessionLazyDelegator. replicate(java.lang.Object object, ReplicationMode replicationMode)
void
SessionLazyDelegator. replicate(java.lang.String entityName, java.lang.Object object, ReplicationMode replicationMode)
-
Uses of ReplicationMode in org.hibernate.event.spi
Methods in org.hibernate.event.spi that return ReplicationMode Modifier and Type Method Description ReplicationMode
ReplicateEvent. getReplicationMode()
Methods in org.hibernate.event.spi with parameters of type ReplicationMode Modifier and Type Method Description void
ReplicateEvent. setReplicationMode(ReplicationMode replicationMode)
Constructors in org.hibernate.event.spi with parameters of type ReplicationMode Constructor Description ReplicateEvent(java.lang.Object object, ReplicationMode replicationMode, EventSource source)
ReplicateEvent(java.lang.String entityName, java.lang.Object object, ReplicationMode replicationMode, EventSource source)
-