Class SpanPositionCheckQuery

    • Constructor Detail

      • SpanPositionCheckQuery

        public SpanPositionCheckQuery​(SpanQuery match)
    • Method Detail

      • getMatch

        public SpanQuery getMatch()
        Returns:
        the SpanQuery whose matches are filtered.
      • getField

        public java.lang.String getField()
        Description copied from class: SpanQuery
        Returns the name of the field matched by this query.

        Note that this may return null if the query matches no terms.

        Specified by:
        getField in class SpanQuery
      • extractTerms

        public void extractTerms​(java.util.Set<Term> terms)
        Description copied from class: Query
        Expert: adds all terms occurring in this query to the terms set. Only works if this query is in its rewritten form.
        Overrides:
        extractTerms in class Query
      • getSpans

        public Spans getSpans​(AtomicReaderContext context,
                              Bits acceptDocs,
                              java.util.Map<Term,​TermContext> termContexts)
                       throws java.io.IOException
        Description copied from class: SpanQuery
        Expert: Returns the matches for this query in an index. Used internally to search for spans.
        Specified by:
        getSpans in class SpanQuery
        Throws:
        java.io.IOException
      • rewrite

        public Query rewrite​(IndexReader reader)
                      throws java.io.IOException
        Description copied from class: Query
        Expert: called to re-write queries into primitive queries. For example, a PrefixQuery will be rewritten into a BooleanQuery that consists of TermQuerys.
        Overrides:
        rewrite in class Query
        Throws:
        java.io.IOException