Interface BinaryLogicOperator

All Superinterfaces:
Filter
All Known Subinterfaces:
And, Or
All Known Implementing Classes:
AndImpl, OrImpl

public interface BinaryLogicOperator extends Filter
Abstract super-interface for logical operators that accept two or more other logical values as inputs. Currently, the only two subclasses are And and Or.
Since:
GeoAPI 2.0
Author:
Chris Dillard (SYS Technologies)
  • Field Summary

    Fields inherited from interface Filter

    EXCLUDE, INCLUDE
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a list containing all of the child filters of this object.

    Methods inherited from interface Filter

    accept, evaluate
  • Method Details

    • getChildren

      List<Filter> getChildren()
      Returns a list containing all of the child filters of this object.

      This list will contain at least two elements, and each element will be an instance of Filter.