Class IntervalQuery
- java.lang.Object
-
- org.apache.lucene.search.Query
-
- org.apache.lucene.queries.intervals.IntervalQuery
-
public final class IntervalQuery extends Query
A query that retrieves documents containing intervals returned from anIntervalsSourceStatic constructor functions for various different sources can be found in theIntervalsclass Scores for this query are computed as a function of the sloppy frequency of intervals appearing in a particular document. Sloppy frequency is calculated from the number of matching intervals, and their width, with wider intervals contributing lower values. The scores can be adjusted with two optional parameters:- pivot - the sloppy frequency value at which the overall score of the document will equal 0.5. The default value is 1
- exp - higher values of this parameter make the function grow more slowly below the pivot and faster higher than the pivot. The default value is 1
BoostQuery
-
-
Constructor Summary
Constructors Constructor Description IntervalQuery(String field, IntervalsSource intervalsSource)Create a new IntervalQueryIntervalQuery(String field, IntervalsSource intervalsSource, float pivot)Create a new IntervalQuery with a scoring pivotIntervalQuery(String field, IntervalsSource intervalsSource, float pivot, float exp)Create a new IntervalQuery with a scoring pivot and exponent
-
Method Summary
All Methods Instance 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.StringgetField()The field to queryinthashCode()Override and implement query hash code properly in a subclass.StringtoString(String field)Prints a query to a string, withfieldassumed to be the default field and omitted.voidvisit(QueryVisitor visitor)Recurse through the query tree, visiting any child queries-
Methods inherited from class org.apache.lucene.search.Query
classHash, rewrite, sameClassAs, toString
-
-
-
-
Constructor Detail
-
IntervalQuery
public IntervalQuery(String field, IntervalsSource intervalsSource)
Create a new IntervalQuery- Parameters:
field- the field to queryintervalsSource- anIntervalsSourceto retrieve intervals from
-
IntervalQuery
public IntervalQuery(String field, IntervalsSource intervalsSource, float pivot)
Create a new IntervalQuery with a scoring pivot- Parameters:
field- the field to queryintervalsSource- anIntervalsSourceto retrieve intervals frompivot- the sloppy frequency value at which the score will be 0.5, must be within (0, +Infinity)
-
IntervalQuery
public IntervalQuery(String field, IntervalsSource intervalsSource, float pivot, float exp)
Create a new IntervalQuery with a scoring pivot and exponent- Parameters:
field- the field to queryintervalsSource- anIntervalsSourceto retrieve intervals frompivot- the sloppy frequency value at which the score will be 0.5, must be within (0, +Infinity)exp- exponent, higher values make the function grow slower before 'pivot' and faster after 'pivot', must be in (0, +Infinity)
-
-
Method Detail
-
getField
public String getField()
The field to query
-
toString
public String toString(String field)
Description copied from class:QueryPrints a query to a string, withfieldassumed to be the default field and omitted.
-
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
-
visit
public void visit(QueryVisitor visitor)
Description copied from class:QueryRecurse through the query tree, visiting any child queries
-
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)
-
-