| java.lang.Object |
| ↳ |
org.apache.lucene.search.Filter |
| |
↳ |
com.atlassian.confluence.search.lucene.filter.TermFilter |
Class Overview
Lucene filter that finds documents that match a particular org.apache.lucene.index.Term.
Summary
| Public Constructors |
|
|
TermFilter(Term term)
Create a lucene filter that finds documents that match a particular org.apache.lucene.index.Term.
|
|
[Expand]
Inherited Methods |
From class
org.apache.lucene.search.Filter
|
BitSet
|
bits(IndexReader arg0)
|
|
DocIdSet
|
getDocIdSet(IndexReader arg0)
|
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
Public Constructors
public
TermFilter
(Term term)
Create a lucene filter that finds documents that match a particular org.apache.lucene.index.Term.
Parameters
| term
| The org.apache.lucene.index.Term to find. If null, an empty BitSet will be returned from bits(IndexReader)
|
Public Methods
public
BitSet
bits
(IndexReader reader)