Uses of Interface
org.hibernate.engine.spi.ManagedEntity
-
Packages that use ManagedEntity Package Description org.hibernate.engine.spi -
-
Uses of ManagedEntity in org.hibernate.engine.spi
Subinterfaces of ManagedEntity in org.hibernate.engine.spi Modifier and Type Interface Description interfaceEnhancedEntityThis is a special marker interface designed to represent the union of several traits: - ManagedEntity - Managed - PersistentAttributeInterceptable - SelfDirtinessTracker The need for such a "union" isn't natural in the Java language, but represents a technicality we need to bypass performance issues caused by https://bugs.openjdk.org/browse/JDK-8180450Methods in org.hibernate.engine.spi that return ManagedEntity Modifier and Type Method Description ManagedEntityManagedEntity. $$_hibernate_getNextManagedEntity()Part of entry linking; obtain reference to the next entry.ManagedEntityManagedEntity. $$_hibernate_getPreviousManagedEntity()Part of entry linking; obtain reference to the previous entry.Methods in org.hibernate.engine.spi with parameters of type ManagedEntity Modifier and Type Method Description voidManagedEntity. $$_hibernate_setNextManagedEntity(ManagedEntity next)Part of entry linking; sets the next entry.voidManagedEntity. $$_hibernate_setPreviousManagedEntity(ManagedEntity previous)Part of entry linking; sets the previous entry.
-