static NewArrayExpression |
Expressions.newArrayBounds(Type type,
int dimension,
Expression bound) |
Creates a NewArrayExpression that represents creating an array
that has a specified rank.
|
static NewArrayExpression |
Expressions.newArrayInit(Type type,
int dimension,
Iterable<? extends Expression> expressions) |
Creates a NewArrayExpression that represents creating a
n-dimensional array and initializing it from a list of
elements.
|
static NewArrayExpression |
Expressions.newArrayInit(Type type,
int dimension,
Expression... expressions) |
Creates a NewArrayExpression that represents creating an
n-dimensional array and initializing it from a list of
elements, using varargs.
|
static NewArrayExpression |
Expressions.newArrayInit(Type type,
Iterable<? extends Expression> expressions) |
Creates a NewArrayExpression that represents creating a
one-dimensional array and initializing it from a list of
elements.
|
static NewArrayExpression |
Expressions.newArrayInit(Type type,
Expression... expressions) |
Creates a NewArrayExpression that represents creating a
one-dimensional array and initializing it from a list of
elements, using varargs.
|