Interface Query

All Known Implementing Classes:
AndQuery, FieldMatchQuery, FieldRangeQuery, NotQuery, OrQuery, StringMatchQuery

public interface Query
Query interface used to test a record for some condition.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    matches(DBRecord record)
    Returns true if the given record matches the querys condition.
  • Method Details

    • matches

      boolean matches(DBRecord record)
      Returns true if the given record matches the querys condition.
      Parameters:
      record - the record to test for compliance.