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 ofSessionandStatelessSession, 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.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 FilterSession. enableFilter(String filterName)FilterSharedSessionContract. enableFilter(String filterName)Enable the named filter for this current session.FilterSession. getEnabledFilter(String filterName)FilterSharedSessionContract. getEnabledFilter(String filterName)Retrieve a currently enabled filter by name.FilterFilter. setParameter(String name, Object value)Set the named parameter's value for this filter.FilterFilter. setParameterList(String name, Object[] values)Set the named parameter's value list for this filter.FilterFilter. 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 FilterLoadQueryInfluencers. enableFilter(String filterName)FilterSessionDelegatorBaseImpl. enableFilter(String filterName)FilterSessionLazyDelegator. enableFilter(String filterName)FilterSharedSessionDelegatorBaseImpl. enableFilter(String filterName)@Nullable FilterLoadQueryInfluencers. getEnabledFilter(String filterName)FilterSessionDelegatorBaseImpl. getEnabledFilter(String filterName)FilterSessionLazyDelegator. getEnabledFilter(String filterName)FilterSharedSessionDelegatorBaseImpl. 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.metamodel.mapping
Method parameters in org.hibernate.metamodel.mapping with type arguments of type Filter Modifier and Type Method Description default voidPluralAttributeMapping. applyBaseManyToManyRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)default voidEntityMappingType. applyBaseRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)default voidPluralAttributeMapping. applyBaseRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)voidRestrictable. applyBaseRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)Applies the base set of restrictions.default voidEntityMappingType. applyFilterRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, SqlAstCreationState creationState)voidFilterRestrictable. applyFilterRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, SqlAstCreationState creationState)Applies just theFiltervalues enabled for the associated entitydefault voidPluralAttributeMapping. 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 voidAbstractCollectionPersister. applyBaseManyToManyRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)voidCollectionPersister. applyBaseManyToManyRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)voidAbstractCollectionPersister. applyBaseRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)voidAbstractCollectionPersister. applyFilterRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, SqlAstCreationState creationState)StringAbstractCollectionPersister. getManyToManyFilterFragment(TableGroup tableGroup, Map<String,Filter> enabledFilters)StringCollectionPersister. 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 voidAbstractEntityPersister. applyBaseRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, Set<String> treatAsDeclarations, SqlAstCreationState creationState)voidAbstractEntityPersister. applyFilterRestrictions(Consumer<Predicate> predicateConsumer, TableGroup tableGroup, boolean useQualifier, Map<String,Filter> enabledFilters, SqlAstCreationState creationState)
-