Class NotQuery

  • All Implemented Interfaces:
    Query

    public class NotQuery
    extends java.lang.Object
    implements Query
    Negates the given query such that this query is the logical "NOT" of the given query.
    • Constructor Summary

      Constructors 
      Constructor Description
      NotQuery​(Query q1)
      Construct a new query that results in the not of the given query.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean matches​(Record record)
      Returns true if the given record matches the querys condition.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • NotQuery

        public NotQuery​(Query q1)
        Construct a new query that results in the not of the given query.
        Parameters:
        q1 - the query to logically negate.
    • Method Detail

      • matches

        public boolean matches​(Record record)
        Description copied from interface: Query
        Returns true if the given record matches the querys condition.
        Specified by:
        matches in interface Query
        Parameters:
        record - the record to test for compliance.
        See Also:
        Query.matches(db.Record)