Package org.sonar.python.tree
Class StringElementImpl
- java.lang.Object
-
- org.sonar.python.tree.PyTree
-
- org.sonar.python.tree.StringElementImpl
-
- All Implemented Interfaces:
StringElement,Tree
public class StringElementImpl extends PyTree implements StringElement
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(TreeVisitor visitor)List<Tree>children()Tree.KindgetKind()Stringprefix()StringtrimmedQuotesValue()Stringvalue()-
Methods inherited from class org.sonar.python.tree.PyTree
astNode, firstToken, is, lastToken, parent, setParent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.sonar.python.api.tree.Tree
ancestors, astNode, descendants, descendants, firstToken, is, lastToken, parent
-
-
-
-
Method Detail
-
accept
public void accept(TreeVisitor visitor)
-
value
public String value()
- Specified by:
valuein interfaceStringElement- Returns:
- the token value of this literal.
-
trimmedQuotesValue
public String trimmedQuotesValue()
- Specified by:
trimmedQuotesValuein interfaceStringElement
-
prefix
public String prefix()
- Specified by:
prefixin interfaceStringElement
-
-