Package org.apache.lucene.spatial.prefix
Class AbstractPrefixTreeQuery
- java.lang.Object
-
- org.apache.lucene.search.Query
-
- org.apache.lucene.spatial.prefix.AbstractPrefixTreeQuery
-
- Direct Known Subclasses:
AbstractVisitingPrefixTreeQuery,ContainsPrefixTreeQuery
public abstract class AbstractPrefixTreeQuery extends Query
Base class for Lucene Queries on SpatialPrefixTree fields.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classAbstractPrefixTreeQuery.BaseTermsEnumTraverserHolds transient state and docid collecting utility methods as part of traversing aTermsEnumfor aLeafReaderContext.
-
Field Summary
Fields Modifier and Type Field Description protected intdetailLevelprotected StringfieldNameprotected SpatialPrefixTreegridprotected ShapequeryShape
-
Constructor Summary
Constructors Constructor Description AbstractPrefixTreeQuery(Shape queryShape, String fieldName, SpatialPrefixTree grid, int detailLevel)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description WeightcreateWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)Expert: Constructs an appropriate Weight implementation for this query.booleanequals(Object o)Override and implement query instance equivalence properly in a subclass.protected abstract DocIdSetgetDocIdSet(LeafReaderContext context)inthashCode()Override and implement query hash code properly in a subclass.voidvisit(QueryVisitor visitor)Recurse through the query tree, visiting any child queries
-
-
-
Field Detail
-
queryShape
protected final Shape queryShape
-
fieldName
protected final String fieldName
-
grid
protected final SpatialPrefixTree grid
-
detailLevel
protected final int detailLevel
-
-
Constructor Detail
-
AbstractPrefixTreeQuery
public AbstractPrefixTreeQuery(Shape queryShape, String fieldName, SpatialPrefixTree grid, int detailLevel)
-
-
Method Detail
-
equals
public boolean equals(Object o)
Description copied from class:QueryOverride and implement query instance equivalence properly in a subclass. This is required so thatQueryCacheworks properly. Typically a query will be equal to another only if it's an instance of the same class and its document-filtering properties are identical that other instance. Utility methods are provided for certain repetitive code.- Specified by:
equalsin classQuery- See Also:
Query.sameClassAs(Object),Query.classHash()
-
hashCode
public int hashCode()
Description copied from class:QueryOverride and implement query hash code properly in a subclass. This is required so thatQueryCacheworks properly.- Specified by:
hashCodein classQuery- See Also:
Query.equals(Object)
-
visit
public void visit(QueryVisitor visitor)
Description copied from class:QueryRecurse through the query tree, visiting any child queries
-
createWeight
public Weight createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost) throws IOException
Description copied from class:QueryExpert: Constructs an appropriate Weight implementation for this query.Only implemented by primitive queries, which re-write to themselves.
- Overrides:
createWeightin classQueryscoreMode- How the produced scorers will be consumed.boost- The boost that is propagated by the parent queries.- Throws:
IOException
-
getDocIdSet
protected abstract DocIdSet getDocIdSet(LeafReaderContext context) throws IOException
- Throws:
IOException
-
-