Uses of Interface
org.hibernate.Filter
-
Packages that use Filter Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.metamodel.mapping Defines the runtime mapping metamodel, which describes the mapping of the application's domain model parts (entities, attributes) to relational database objects (tables, columns).org.hibernate.persister.collection This package abstracts persistence mechanisms for collections.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities. -
-
Uses of Filter in org.hibernate
Methods in org.hibernate that return Filter Modifier and Type Method Description Filter
Session. enableFilter(String filterName)
Enable the named filter for this current session.Filter
Session. getEnabledFilter(String filterName)
Retrieve a currently enabled filter by name.Filter
Filter. setParameter(String name, Object value)
Set the named parameter's value for this filter.Filter
Filter. setParameterList(String name, Object[] values)
Set the named parameter's value list for this filter.Filter
Filter. setParameterList(String name, Collection<?> values)
Set the named parameter's value list for this filter. -
Uses of Filter in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return Filter Modifier and Type Method Description Filter
LoadQueryInfluencers. enableFilter(String filterName)
Filter
SessionDelegatorBaseImpl. enableFilter(String filterName)
Filter
SessionLazyDelegator. enableFilter(String filterName)
Filter
LoadQueryInfluencers. getEnabledFilter(String filterName)
Filter
SessionDelegatorBaseImpl. getEnabledFilter(String filterName)
Filter
SessionLazyDelegator. getEnabledFilter(String filterName)
Methods in org.hibernate.engine.spi that return types with arguments of type Filter Modifier and Type Method Description Map<String,Filter>
LoadQueryInfluencers. getEnabledFilters()
-
Uses of Filter in org.hibernate.internal
Classes in org.hibernate.internal that implement Filter Modifier and Type Class Description class
FilterImpl
Implementation of FilterImpl.Methods in org.hibernate.internal that return Filter Modifier and Type Method Description Filter
SessionImpl. enableFilter(String filterName)
Filter
SessionImpl. getEnabledFilter(String filterName)
Filter
FilterImpl. setParameter(String name, Object value)
Set the named parameter's value for this filter.Filter
FilterImpl. setParameterList(String name, Object[] values)
Set the named parameter's value list for this filter.Filter
FilterImpl. setParameterList(String name, Collection<?> values)
Set the named parameter's value list for this filter.Method parameters in org.hibernate.internal with type arguments of type Filter Modifier and Type Method Description void
FilterHelper. applyEnabledFilters(Consumer<Predicate> predicateConsumer, FilterAliasGenerator aliasGenerator, Map<String,Filter> enabledFilters, TableGroup tableGroup, SqlAstCreationState creationState)
boolean
FilterHelper. isAffectedBy(Map<String,Filter> enabledFilters)
void
FilterHelper. render(StringBuilder buffer, FilterAliasGenerator aliasGenerator, Map<String,Filter> enabledFilters)
String
FilterHelper. render(FilterAliasGenerator aliasGenerator, Map<String,Filter> enabledFilters)
-
Uses of Filter in org.hibernate.metamodel.mapping
Method parameters in org.hibernate.metamodel.mapping with type arguments of type Filter Modifier and Type Method Description default void
PluralAttributeMapping. applyBaseManyToManyRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)
default void
EntityMappingType. applyBaseRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)
default void
PluralAttributeMapping. applyBaseRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)
void
Restrictable. applyBaseRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)
Applies the base set of restrictions.default void
EntityMappingType. applyFilterRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, SqlAstCreationState creationState)
void
FilterRestrictable. applyFilterRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, SqlAstCreationState creationState)
Applies just theFilter
values enabled for the associated entitydefault void
PluralAttributeMapping. applyFilterRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, SqlAstCreationState creationState)
-
Uses of Filter in org.hibernate.persister.collection
Method parameters in org.hibernate.persister.collection with type arguments of type Filter Modifier and Type Method Description void
AbstractCollectionPersister. applyBaseManyToManyRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)
void
CollectionPersister. applyBaseManyToManyRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)
void
AbstractCollectionPersister. applyBaseRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)
void
AbstractCollectionPersister. applyFilterRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, SqlAstCreationState creationState)
String
AbstractCollectionPersister. getManyToManyFilterFragment(TableGroup tableGroup, Map<String,Filter> enabledFilters)
String
CollectionPersister. getManyToManyFilterFragment(TableGroup tableGroup, Map<String,Filter> enabledFilters)
-
Uses of Filter in org.hibernate.persister.entity
Method parameters in org.hibernate.persister.entity with type arguments of type Filter Modifier and Type Method Description void
AbstractEntityPersister. applyBaseRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)
void
AbstractEntityPersister. applyFilterRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, SqlAstCreationState creationState)
-