Uses of Class
org.apache.calcite.linq4j.tree.ElementInit
-
Packages that use ElementInit Package Description org.apache.calcite.linq4j.tree Object model for Java expressions. -
-
Uses of ElementInit in org.apache.calcite.linq4j.tree
Methods in org.apache.calcite.linq4j.tree that return ElementInit Modifier and Type Method Description static ElementInitExpressions. elementInit(Method method, Iterable<? extends Expression> expressions)Creates anElementInit, given anIterable<T>as the second argument.static ElementInitExpressions. elementInit(Method method, Expression... expressions)Creates an ElementInit, given an array of values as the second argument, using varargs.Methods in org.apache.calcite.linq4j.tree with parameters of type ElementInit Modifier and Type Method Description static MemberListBindingExpressions. listBind(Member member, ElementInit... elementInits)Creates a MemberListBinding where the member is a field or property, using varargs.static MemberListBindingExpressions. listBind(Method method, ElementInit... elementInits)Creates a MemberListBinding object based on a specified property accessor method, using varargs.static ListInitExpressionExpressions. listInit(NewExpression newExpression, ElementInit... elementInits)Creates a ListInitExpression that uses specified ElementInit objects to initialize a collection, using varargs.Method parameters in org.apache.calcite.linq4j.tree with type arguments of type ElementInit Modifier and Type Method Description static MemberListBindingExpressions. listBind(Member member, Iterable<? extends ElementInit> elementInits)Creates a MemberListBinding where the member is a field or property.static MemberListBindingExpressions. listBind(Method method, Iterable<? extends ElementInit> elementInits)Creates a MemberListBinding based on a specified property accessor method.static ListInitExpressionExpressions. listInit(NewExpression newExpression, Iterable<? extends ElementInit> elementInits)Creates a ListInitExpression that uses specified ElementInit objects to initialize a collection.
-