Uses of Interface
org.hibernate.Filter

Packages that use Filter
org.hibernate This package defines the central Hibernate APIs. 
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.impl This package contains implementations of the central Hibernate APIs, especially the Hibernate session. 
 

Uses of Filter in org.hibernate
 

Methods in org.hibernate that return Filter
 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, Collection values)
          Set the named parameter's value list for this filter.
 Filter Filter.setParameterList(String name, Object[] values)
          Set the named parameter's value list for this filter.
 

Uses of Filter in org.hibernate.engine
 

Methods in org.hibernate.engine that return Filter
 Filter LoadQueryInfluencers.enableFilter(String filterName)
           
 Filter LoadQueryInfluencers.getEnabledFilter(String filterName)
           
 

Uses of Filter in org.hibernate.impl
 

Classes in org.hibernate.impl that implement Filter
 class FilterImpl
          Implementation of FilterImpl.
 

Methods in org.hibernate.impl that return Filter
 Filter SessionImpl.enableFilter(String filterName)
          Enable the named filter for this current session.
 Filter SessionImpl.getEnabledFilter(String filterName)
          Retrieve a currently enabled filter by name.
 Filter FilterImpl.setParameter(String name, Object value)
          Set the named parameter's value for this filter.
 Filter FilterImpl.setParameterList(String name, Collection values)
          Set the named parameter's value list for this filter.
 Filter FilterImpl.setParameterList(String name, Object[] values)
          Set the named parameter's value list for this filter.
 



Copyright © 2001-2010 Red Hat, Inc. All Rights Reserved.