org.hibernate.search.filter
abstract public class: FilterKey [javadoc |
source]
java.lang.Object
org.hibernate.search.filter.FilterKey
Direct Known Subclasses:
StandardFilterKey
The key object must implement equals / hashcode so that 2 keys are equals if and only if
the given Filter types are the same and the set of parameters are the same.
The FilterKey creator (ie the @Key method) does not have to inject
impl
It will be done by Hibernate Search
- author:
Emmanuel - Bernard
| Method from org.hibernate.search.filter.FilterKey Detail: |
abstract public boolean equals(Object obj)
|
public Class getImpl() {
return impl;
}
Represent the @FullTextFilterDef.impl class |
abstract public int hashCode()
|
public void setImpl(Class impl) {
this.impl = impl;
}
|