Class NotQuery

All Implemented Interfaces:
Query

public class NotQuery extends AbstractWrapperQuery
Represents a Query corresponding to the logical negation of another Query.
  • Field Details

  • Constructor Details

    • NotQuery

      public NotQuery(Query query)
      Build a NotQuery object.
      Parameters:
      query - the negated query.
  • Method Details

    • appendNegation

      Appends a negation to the query being built.
      This method just does sb.append("*:* -");
      Parameters:
      query - The query builder
      Returns:
      The given query builder
    • build

      Description copied from interface: Query
      Build the solr query string representing the Query object.
      Returns:
      the solr query string representing the Query object.
      Throws:
      QuerySyntaxException - if the query can't be built because of a syntax error.
    • buildAsJson

      Description copied from interface: Query
      Build the solr query representing the Query object.
      The return type may be either String or Map<String, Object> following the Solr JSON Query DSL.
      Returns:
      the solr query representing the Query object.
      Throws:
      QuerySyntaxException - if the query can't be built because of a syntax error.
    • rewrite

      public Query rewrite()
      Description copied from interface: Query
      Rewrite this Query to allow further optimisations.
      Returns:
      a rewritten Query, sementically identical
    • toString

      public String toString(int indent)
      Description copied from interface: Query
      Gets a representation of this Query, for pretty-printing for logging and debugging purposes
      Parameters:
      indent - The current indentation. Base indentation is 2 (for printing a sub-level)
      Returns:
      a representation of this Query