Methods Summary |
---|
protected org.apache.lucene.search.Weight | createWeight(org.apache.lucene.search.Searcher searcher)
return new MatchAllDocsWeight(searcher);
|
public boolean | equals(java.lang.Object o)
if (!(o instanceof MatchAllDocsQuery))
return false;
MatchAllDocsQuery other = (MatchAllDocsQuery) o;
return this.getBoost() == other.getBoost();
|
public void | extractTerms(java.util.Set terms)
|
public int | hashCode()
return Float.floatToIntBits(getBoost()) ^ 0x1AA71190;
|
public java.lang.String | toString(java.lang.String field)
StringBuffer buffer = new StringBuffer();
buffer.append("MatchAllDocsQuery");
buffer.append(ToStringUtils.boost(getBoost()));
return buffer.toString();
|