Class ExpressionSnippet
    public class ExpressionSnippet extends Snippet
 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
Method Summary
              
| Modifier and Type | Method | Description | 
| String | name() | Variable name which is the value of the expression. | 
| String | typeName() | Type of the expression | 
       Methods declared in class java.lang.Object
 clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      name
 public String name()
 Variable 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 a 
VarSnippet.
 - Returns:
- the name of the variable which is the subject of the expression.
typeName
 public String typeName()
 Type of the expression
  - Returns:
- String representation of the type of the expression.
  
    © 1993, 2023, 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/21/docs/api/jdk.jshell/jdk/jshell/ExpressionSnippet.html