Package org.sonar.python.api.tree
Interface Parameter
-
- All Superinterfaces:
AnyParameter,Tree
- All Known Implementing Classes:
ParameterImpl
public interface Parameter extends AnyParameter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressiondefaultValue()TokenequalToken()Namename()TokenstarToken()TypeAnnotationtypeAnnotation()-
Methods inherited from interface org.sonar.python.api.tree.Tree
accept, ancestors, astNode, children, descendants, descendants, firstToken, getKind, is, lastToken, parent
-
-
-
-
Method Detail
-
starToken
@CheckForNull Token starToken()
-
name
Name name()
-
typeAnnotation
@CheckForNull TypeAnnotation typeAnnotation()
-
equalToken
@CheckForNull Token equalToken()
-
defaultValue
@CheckForNull Expression defaultValue()
-
-