- 
- All Superinterfaces:
- StatementTree,- Tree
 
 @Deprecated(since="11", forRemoval=true) public interface VariableTree extends StatementTree Deprecated, for removal: This API element is subject to removal in a future version.Nashorn JavaScript script engine and APIs, and the jjs tool are deprecated with the intent to remove them in a future release.A tree node for a variable declaration statement. For example:var name [ initializer ] ; var binding_pattern [ initializer ]; - Since:
- 9
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ExpressionTreegetBinding()Deprecated, for removal: This API element is subject to removal in a future version.Returns the binding of this declaration.ExpressionTreegetInitializer()Deprecated, for removal: This API element is subject to removal in a future version.Returns the initial value expression for this variable.booleanisConst()Deprecated, for removal: This API element is subject to removal in a future version.Is this a const declaration?booleanisLet()Deprecated, for removal: This API element is subject to removal in a future version.Is this a let declaration?- 
Methods declared in interface jdk.nashorn.api.tree.Treeaccept, getEndPosition, getKind, getStartPosition
 
- 
 
- 
- 
- 
Method Detail- 
getBindingExpressionTree getBinding() Deprecated, for removal: This API element is subject to removal in a future version.Returns the binding of this declaration. This is anIdentifierTreefor a binding identifier case (simple variable declaration). This is anObjectLiteralTreeor aArrayLiteralTreefor a destructuring declaration.- Returns:
- the binding expression of this declaration
 
 - 
getInitializerExpressionTree getInitializer() Deprecated, for removal: This API element is subject to removal in a future version.Returns the initial value expression for this variable. This is null if no initial value for this variable.- Returns:
- the initial value expression
 
 - 
isConstboolean isConst() Deprecated, for removal: This API element is subject to removal in a future version.Is this a const declaration?- Returns:
- true if this is a const declaration
 
 - 
isLetboolean isLet() Deprecated, for removal: This API element is subject to removal in a future version.Is this a let declaration?- Returns:
- true if this is a let declaration
 
 
- 
 
-