Interface QueryParser.FilterChain

Enclosing class:
QueryParser

public static interface QueryParser.FilterChain
Interface for the filter chain that processes queries. Each filter in the chain can invoke the next filter or terminate the chain.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.apache.lucene.search.Query
    parse(String query)
    Parses the query string and returns a Query object.
  • Method Details

    • parse

      org.apache.lucene.search.Query parse(String query)
      Parses the query string and returns a Query object.
      Parameters:
      query - the query string to parse
      Returns:
      the parsed Query object