Class TermQuery

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable

    public class TermQuery
    extends org.apache.lucene.search.Query
    A Query that matches documents containing a term. This may be combined with other terms with a BooleanQuery.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      TermQuery​(org.apache.lucene.index.Term t)
      Constructs a query for the term t.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected org.apache.lucene.search.Weight createWeight​(org.apache.lucene.search.Searcher searcher)  
      boolean equals​(java.lang.Object o)
      Returns true iff o is equal to this.
      void extractTerms​(java.util.Set terms)  
      org.apache.lucene.index.Term getTerm()
      Returns the term of this query.
      int hashCode()
      Returns a hash code value for this object.
      java.lang.String toString​(java.lang.String field)
      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
      • Methods inherited from class java.lang.Object

        finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • TermQuery

        public TermQuery​(org.apache.lucene.index.Term t)
        Constructs a query for the term t.
    • Method Detail

      • getTerm

        public org.apache.lucene.index.Term getTerm()
        Returns the term of this query.
      • createWeight

        protected org.apache.lucene.search.Weight createWeight​(org.apache.lucene.search.Searcher searcher)
                                                        throws java.io.IOException
        Overrides:
        createWeight in class org.apache.lucene.search.Query
        Throws:
        java.io.IOException
      • extractTerms

        public void extractTerms​(java.util.Set terms)
        Overrides:
        extractTerms in class org.apache.lucene.search.Query
      • toString

        public java.lang.String toString​(java.lang.String field)
        Prints a user-readable version of this query.
        Specified by:
        toString in class org.apache.lucene.search.Query
      • equals

        public boolean equals​(java.lang.Object o)
        Returns true iff o is equal to this.
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Returns a hash code value for this object.
        Overrides:
        hashCode in class java.lang.Object