Class AndFilter

All Implemented Interfaces:
ExternalizableLite, PortableObject, Filter, EntryFilter, IndexAwareFilter, QueryRecorderFilter, Serializable
Direct Known Subclasses:
BetweenFilter

public class AndFilter extends AllFilter
Filter which returns the logical "and" of two other filters.
Author:
cp/gg 2002.10.26
See Also:
  • Constructor Details

    • AndFilter

      public AndFilter()
      Default constructor (necessary for the ExternalizableLite interface).
    • AndFilter

      public AndFilter(Filter filterLeft, Filter filterRight)
      Construct an "and" filter. The result is defined as:
      filterLeft && filterRight
      Parameters:
      filterLeft - the "left" filter
      filterRight - the "right" filter