Class ExpressionSnippet
java.lang.Object
jdk.jshell.Snippet
jdk.jshell.ExpressionSnippet
Snippet for an assignment or variable-value expression.
The Kind is 
Snippet.Kind.EXPRESSION.
ExpressionSnippet is immutable: an access to
any of its methods will always return the same result.
and thus is thread-safe.
- See Java Language Specification:
- 
15 Expressions
- Since:
- 9
- 
Nested Class SummaryNested classes/interfaces declared in class SnippetSnippet.Kind, Snippet.Status, Snippet.SubKind
- 
Method Summary
- 
Method Details- 
nameVariable name which is the value of the expression. Since the expression is either just a variable identifier or it is an assignment to a variable, there is always a variable which is the subject of the expression. All other forms of expression become temporary variables which are instead referenced by aVarSnippet.- Returns:
- the name of the variable which is the subject of the expression.
 
- 
typeNameType of the expression- Returns:
- String representation of the type of the expression.
 
 
-