Class BinaryPredicateIterableExpression<T>

  • Type Parameters:
    T - the type of the results of the operands
    All Implemented Interfaces:
    java.io.Serializable, Expression<java.lang.Boolean>, Node

    public class BinaryPredicateIterableExpression<T>
    extends AbstractDeferredExpression<java.lang.Boolean>
    implements java.io.Serializable
    An unresolved expression which can be resolved by applying a binary predicate on the results of the two operands (left, right). Any instance contains the binary predicate itself as well as expressions for both operands.
    See Also:
    Serialized Form
    • Method Detail

      • getLeft

        public Expression<java.lang.Iterable<T>> getLeft()
      • getChildren

        public java.util.List<Node> getChildren()
        Description copied from interface: Node
        Has to return the children of the node. This must never return null
        Specified by:
        getChildren in interface Node
        Returns:
        a list containing all the children of the node
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object