Class AnyIterableConversionExpression<T>

  • Type Parameters:
    T - the type of the elements of the iterable and the result of this expression.
    All Implemented Interfaces:
    java.io.Serializable, Expression<T>, Node

    public class AnyIterableConversionExpression<T>
    extends ConversionOperationExpression<java.lang.Iterable<?>,​T>
    An unresolved expression which uses an operation on iterables to produce one value of the same type. An instance will contain the operation to act on the iterable as well as an expression for the iterable on which the operation will have to be performed.
    See Also:
    Serialized Form
    • Constructor Detail

      • AnyIterableConversionExpression

        public AnyIterableConversionExpression​(Conversion<java.lang.Iterable<?>,​T> operation,
                                               Expression<? extends java.lang.Iterable<?>> iterable)