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 ReplicationModeReplicationMode. valueOf(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 voidSession. replicate(Object object, ReplicationMode replicationMode)Persist the state of the given detached instance, reusing the current identifier value.voidSession. replicate(String entityName, 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 voidSessionDelegatorBaseImpl. replicate(Object object, ReplicationMode replicationMode)voidSessionDelegatorBaseImpl. replicate(String entityName, Object object, ReplicationMode replicationMode)voidSessionLazyDelegator. replicate(Object object, ReplicationMode replicationMode)voidSessionLazyDelegator. replicate(String entityName, 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 ReplicationModeReplicateEvent. getReplicationMode()Methods in org.hibernate.event.spi with parameters of type ReplicationMode Modifier and Type Method Description voidReplicateEvent. setReplicationMode(ReplicationMode replicationMode)Constructors in org.hibernate.event.spi with parameters of type ReplicationMode Constructor Description ReplicateEvent(Object object, ReplicationMode replicationMode, EventSource source)ReplicateEvent(String entityName, Object object, ReplicationMode replicationMode, EventSource source)
-