Class IterableExpressionToIterable<T>

  • Type Parameters:
    T - the type of the resolved elements
    All Implemented Interfaces:
    java.io.Serializable, Expression<java.lang.Iterable<T>>, Node

    public class IterableExpressionToIterable<T>
    extends AbstractDeferredExpression<java.lang.Iterable<T>>
    implements java.io.Serializable
    A simple expression which contains a list of expressions of T, which can be resolved into an list of T, by resolving each one individually.
    See Also:
    Serialized Form
    • Constructor Detail

      • IterableExpressionToIterable

        public IterableExpressionToIterable​(java.lang.Iterable<? extends Expression<T>> expressions)
    • Method Detail

      • getChildren

        public java.util.List<? extends Expression<T>> 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