org.apache.lucene.search
Class PhraseQuery
- java.lang.Object
-
- org.apache.lucene.search.Query
-
- org.apache.lucene.search.PhraseQuery
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
public class PhraseQuery extends Query
A Query that matches documents containing a particular sequence of terms. A PhraseQuery is built by QueryParser for input like"new york".This query may be combined with other terms or queries with a
BooleanQuery.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description PhraseQuery()Constructs an empty phrase query.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description voidadd(Term term)Adds a term to the end of the query phrase.voidadd(Term term, int position)Adds a term to the end of the query phrase.booleanequals(java.lang.Object o)Returns true iffois equal to this.voidextractTerms(java.util.Set queryTerms)Expert: adds all terms occuring in this query to the terms set.int[]getPositions()Returns the relative positions of terms in this phrase.intgetSlop()Returns the slop.Term[]getTerms()Returns the set of terms in this phrase.inthashCode()Returns a hash code value for this object.voidsetSlop(int s)Sets the number of other words permitted between words in query phrase.java.lang.StringtoString(java.lang.String f)Prints a user-readable version of this query.-
Methods inherited from class org.apache.lucene.search.Query
clone, combine, getBoost, getSimilarity, mergeBooleanQueries, rewrite, setBoost, toString, weight
-
-
-
-
Method Detail
-
setSlop
public void setSlop(int s)
Sets the number of other words permitted between words in query phrase. If zero, then this is an exact phrase search. For larger values this works like aWITHINorNEARoperator.The slop is in fact an edit-distance, where the units correspond to moves of terms in the query phrase out of position. For example, to switch the order of two words requires two moves (the first move places the words atop one another), so to permit re-orderings of phrases, the slop must be at least two.
More exact matches are scored higher than sloppier matches, thus search results are sorted by exactness.
The slop is zero by default, requiring exact matches.
-
getSlop
public int getSlop()
Returns the slop. See setSlop().
-
add
public void add(Term term)
Adds a term to the end of the query phrase. The relative position of the term is the one immediately after the last term added.
-
add
public void add(Term term, int position)
Adds a term to the end of the query phrase. The relative position of the term within the phrase is specified explicitly. This allows e.g. phrases with more than one term at the same position or phrases with gaps (e.g. in connection with stopwords).- Parameters:
term-position-
-
getTerms
public Term[] getTerms()
Returns the set of terms in this phrase.
-
getPositions
public int[] getPositions()
Returns the relative positions of terms in this phrase.
-
extractTerms
public void extractTerms(java.util.Set queryTerms)
Description copied from class:QueryExpert: adds all terms occuring in this query to the terms set. Only works if this query is in itsrewrittenform.- Overrides:
extractTermsin classQuery- See Also:
Query.extractTerms(java.util.Set)
-
toString
public java.lang.String toString(java.lang.String f)
Prints a user-readable version of this query.
-
equals
public boolean equals(java.lang.Object o)
Returns true iffois equal to this.- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
Returns a hash code value for this object.- Overrides:
hashCodein classjava.lang.Object
-
-
DataMelt 3.0 © DataMelt by jWork.ORG