Uses of Class
org.hibernate.annotations.CacheLayout
-
Packages that use CacheLayout Package Description org.hibernate.annotations A set of mapping annotations which extend the O/R mapping annotations defined by JPA.org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.internal org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.mapping This package defines the Hibernate configuration-time mapping model. -
-
Uses of CacheLayout in org.hibernate.annotations
Methods in org.hibernate.annotations that return CacheLayout Modifier and Type Method Description CacheLayout
layout()
The layout of the data for an entity or collection in the query cache.static CacheLayout
CacheLayout. valueOf(String name)
Returns the enum constant of this type with the specified name.static CacheLayout[]
CacheLayout. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of CacheLayout in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type CacheLayout Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilder. applyQueryCacheLayout(CacheLayout cacheLayout)
Specifies the defaultCacheLayout
to use for query cache entries. -
Uses of CacheLayout in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return CacheLayout Modifier and Type Method Description CacheLayout
SessionFactoryOptionsBuilder. getQueryCacheLayout()
Methods in org.hibernate.boot.internal with parameters of type CacheLayout Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilderImpl. applyQueryCacheLayout(CacheLayout cacheLayout)
void
SessionFactoryOptionsBuilder. applyQueryCacheLayout(CacheLayout queryCacheLayout)
-
Uses of CacheLayout in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return CacheLayout Modifier and Type Method Description CacheLayout
AbstractDelegatingSessionFactoryOptions. getQueryCacheLayout()
CacheLayout
SessionFactoryOptions. getQueryCacheLayout()
Methods in org.hibernate.boot.spi with parameters of type CacheLayout Modifier and Type Method Description T
AbstractDelegatingSessionFactoryBuilder. applyQueryCacheLayout(CacheLayout cacheLayout)
-
Uses of CacheLayout in org.hibernate.mapping
Methods in org.hibernate.mapping that return CacheLayout Modifier and Type Method Description CacheLayout
Collection. getQueryCacheLayout()
CacheLayout
PersistentClass. getQueryCacheLayout()
Methods in org.hibernate.mapping with parameters of type CacheLayout Modifier and Type Method Description void
Collection. setQueryCacheLayout(CacheLayout queryCacheLayout)
void
PersistentClass. setQueryCacheLayout(CacheLayout queryCacheLayout)
-