Java org.hibernate Cache fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate Cache fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate Cache.

The text is from its open source code.

Method

booleancontainsCollection(String role, Serializable ownerIdentifier)
Determine whether the cache contains data for the given collection.
booleancontainsEntity(Class entityClass, Serializable identifier)
Determine whether the cache contains data for the given entity "instance".
booleancontainsEntity(String entityName, Serializable identifier)
Determine whether the cache contains data for the given entity "instance".
voidevictAllRegions()
Evict data from all cache regions.
voidevictCollection(String role, Serializable ownerIdentifier)
Evicts the cache data for the given identified collection instance.
voidevictCollectionRegion(String role)
Evicts all entity data from the given region (i.e.
voidevictCollectionRegions()
Evict data from all collection regions.
voidevictDefaultQueryRegion()
Evicts all cached query results from the default region.
voidevictEntity(Class entityClass, Serializable identifier)
Evicts the entity data for a particular entity "instance".
voidevictEntity(String entityName, Serializable identifier)
Evicts the entity data for a particular entity "instance".
voidevictEntityRegion(Class entityClass)
Evicts all entity data from the given region (i.e.
voidevictEntityRegion(String entityName)
Evicts all entity data from the given region (i.e.
voidevictEntityRegions()
Evict data from all entity regions.
voidevictNaturalIdRegions()
Evict data from all naturalId regions.
voidevictQueryRegion(String regionName)
Evicts all cached query results under the given name.
voidevictQueryRegions()
Evict data from all query regions.