Interface StringElement
-
- All Superinterfaces:
Tree
- All Known Implementing Classes:
StringElementImpl
public interface StringElement extends Tree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Expression>interpolatedExpressions()booleanisInterpolated()booleanisTripleQuoted()Stringprefix()StringtrimmedQuotesValue()Stringvalue()
-
-
-
Method Detail
-
value
String value()
- Returns:
- the token value of this literal.
-
trimmedQuotesValue
String trimmedQuotesValue()
-
prefix
String prefix()
-
isTripleQuoted
boolean isTripleQuoted()
-
isInterpolated
boolean isInterpolated()
-
interpolatedExpressions
List<Expression> interpolatedExpressions()
-
-