Interface NewArrayTree
- All Superinterfaces:
-
ExpressionTree
,Tree
public interface NewArrayTree extends ExpressionTree
A tree node for an expression to create a new instance of an array. For example:
new type dimensions initializers new type dimensions [ ] initializers
- Since:
- 1.6
Nested Classes
Nested classes/interfaces declared in interface com.sun.source.tree.Tree
Tree.Kind
Methods
Modifier and Type | Method | Description |
---|---|---|
List<? extends AnnotationTree> | getAnnotations() | Returns the annotations on the base type. |
List<? extends List<? extends AnnotationTree>> | getDimAnnotations() | Returns the annotations on each of the dimension expressions. |
List<? extends ExpressionTree> | getDimensions() | Returns the dimension expressions for the type. |
List<? extends ExpressionTree> | getInitializers() | Returns the initializer expressions. |
Tree | getType() | Returns the base type of the expression. |
Methods declared in interface com.sun.source.tree.Tree
accept, getKind
Methods
getType
Tree getType()
Returns the base type of the expression. May be null
for an array initializer expression.
- Returns:
- the base type
getDimensions
List<? extends ExpressionTree> getDimensions()
Returns the dimension expressions for the type.
- Returns:
- the dimension expressions
getInitializers
List<? extends ExpressionTree> getInitializers()
Returns the initializer expressions.
- Returns:
- the initializer expressions
getAnnotations
List<? extends AnnotationTree> getAnnotations()
Returns the annotations on the base type.
- Returns:
- the annotations
getDimAnnotations
List<? extends List<? extends AnnotationTree>> getDimAnnotations()
Returns the annotations on each of the dimension expressions.
- Returns:
- the annotations on the dimensions expressions
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/jdk.compiler/com/sun/source/tree/NewArrayTree.html