Save This Page
Home » hibernate-entitymanager-3.3.2.GA » org.hibernate » engine » [javadoc | source]
org.hibernate.engine
public class: FilterDefinition [javadoc | source]
java.lang.Object
   org.hibernate.engine.FilterDefinition

All Implemented Interfaces:
    Serializable

A FilterDefinition defines the global attributes of a dynamic filter. This information includes its name as well as its defined parameters (name and type).
Constructor:
 public FilterDefinition(String name,
    String defaultCondition,
    Map parameterTypes) 
    Construct a new FilterDefinition instance.
    Parameters:
    name - The name of the filter for which this configuration is in effect.
Method from org.hibernate.engine.FilterDefinition Summary:
getDefaultFilterCondition,   getFilterName,   getParameterNames,   getParameterType,   getParameterTypes
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.hibernate.engine.FilterDefinition Detail:
 public String getDefaultFilterCondition() 
 public String getFilterName() 
    Get the name of the filter this configuration defines.
 public Set getParameterNames() 
    Get a set of the parameters defined by this configuration.
 public Type getParameterType(String parameterName) 
    Retreive the type of the named parameter defined for this filter.
 public Map getParameterTypes()