Uses of Interface
org.hibernate.Filter

Packages that use Filter
org.hibernate   
org.hibernate.impl   
 

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.impl
 

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

Methods in org.hibernate.impl that return Filter
 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.
 Filter SessionImpl.getEnabledFilter(String filterName)
           
 Filter SessionImpl.enableFilter(String filterName)