Methods Summary |
---|
public java.lang.String | getDefaultFilterCondition()
return defaultFilterCondition;
|
public java.lang.String | getFilterName()Get the name of the filter this configuration defines.
return filterName;
|
public java.util.Set | getParameterNames()Get a set of the parameters defined by this configuration.
return parameterTypes.keySet();
|
public org.hibernate.type.Type | getParameterType(java.lang.String parameterName)Retreive the type of the named parameter defined for this filter.
return (Type) parameterTypes.get(parameterName);
|
public java.util.Map | getParameterTypes()
return parameterTypes;
|