Class AndQuery

  • All Implemented Interfaces:
    Query

    public class AndQuery
    extends java.lang.Object
    implements Query
    Combines two queries such that this query is the logical "AND" of the two queries. If the first query does not match, then the second query is not executed.
    • Constructor Summary

      Constructors 
      Constructor Description
      AndQuery​(Query q1, Query q2)
      Construct a new AndQuery from two other queries.
    • 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

      • AndQuery

        public AndQuery​(Query q1,
                        Query q2)
        Construct a new AndQuery from two other queries.
        Parameters:
        q1 - the first query
        q2 - the second query
    • 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)