Package org.hibernate.cache.cfg.spi
Interface EntityDataCachingConfig
-
- All Superinterfaces:
DomainDataCachingConfig
public interface EntityDataCachingConfig extends DomainDataCachingConfig
Specialized DomainDataCachingConfig describing the requested caching config for a particular entity hierarchy's state data
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<NavigableRole>
getCachedTypes()
The list of specific subclasses of the root that are actually written to cache.java.util.function.Supplier<java.util.Comparator>
getVersionComparatorAccess()
Access to the comparator to be used with the entity's version.boolean
isVersioned()
Mainly here to allow optimization of not having to know the actual comparator instance to use here yet.-
Methods inherited from interface org.hibernate.cache.cfg.spi.DomainDataCachingConfig
getAccessType, getNavigableRole, isMutable
-
-
-
-
Method Detail
-
isVersioned
boolean isVersioned()
Mainly here to allow optimization of not having to know the actual comparator instance to use here yet. If this method returnstrue
, then users can safely assume that accessinggetVersionComparatorAccess()
will not produce a null Comparator later- Specified by:
isVersioned
in interfaceDomainDataCachingConfig
-
getVersionComparatorAccess
java.util.function.Supplier<java.util.Comparator> getVersionComparatorAccess()
Access to the comparator to be used with the entity's version. If the entity is not versioned, then this method returnsnull
.
-
getCachedTypes
java.util.Set<NavigableRole> getCachedTypes()
The list of specific subclasses of the root that are actually written to cache.
-
-