Interface TemplateLiteralTree

All Superinterfaces:
ExpressionTree, Tree

public interface TemplateLiteralTree extends ExpressionTree
A tree node for template literal strings. For example:
 `This is a String with ${computed} values in it`
 
Since:
9
  • Method Details

    • getExpressions

      List<? extends ExpressionTree> getExpressions()
      Returns the list of expressions in this template string
      Returns:
      the list of expressions in this template string