Uses of Class
org.apache.calcite.linq4j.tree.MemberBinding
-
Packages that use MemberBinding Package Description org.apache.calcite.linq4j.tree Object model for Java expressions. -
-
Uses of MemberBinding in org.apache.calcite.linq4j.tree
Subclasses of MemberBinding in org.apache.calcite.linq4j.tree Modifier and Type Class Description classMemberAssignmentRepresents assignment operation for a field or property of an object.classMemberListBindingRepresents initializing the elements of a collection member of a newly created object.classMemberMemberBindingRepresents initializing members of a member of a newly created object.Methods in org.apache.calcite.linq4j.tree with parameters of type MemberBinding Modifier and Type Method Description static MemberMemberBindingExpressions. memberBind(Member member, MemberBinding... bindings)Creates a MemberMemberBinding that represents the recursive initialization of members of a field or property, using varargs.static MemberMemberBindingExpressions. memberBind(Method method, MemberBinding... bindings)Creates a MemberMemberBinding that represents the recursive initialization of members of a member that is accessed by using a property accessor method, using varargs.static MemberInitExpressionExpressions. memberInit(NewExpression newExpression, MemberBinding... bindings)Represents an expression that creates a new object and initializes a property of the object, using varargs.Method parameters in org.apache.calcite.linq4j.tree with type arguments of type MemberBinding Modifier and Type Method Description static MemberMemberBindingExpressions. memberBind(Member member, Iterable<? extends MemberBinding> bindings)Creates a MemberMemberBinding that represents the recursive initialization of members of a field or property.static MemberMemberBindingExpressions. memberBind(Method method, Iterable<? extends MemberBinding> bindings)Creates a MemberMemberBinding that represents the recursive initialization of members of a member that is accessed by using a property accessor method.static MemberInitExpressionExpressions. memberInit(NewExpression newExpression, Iterable<? extends MemberBinding> bindings)Represents an expression that creates a new object and initializes a property of the object.
-