Interface MatchStatement
-
- All Known Implementing Classes:
MatchStatementImpl
public interface MatchStatement extends Statement
Match statement
See https://docs.python.org/3/reference/compound_stmts.html#the-match-statementmatchKeyword()subjectExpression():caseBlocks()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<CaseBlock>caseBlocks()Tokencolon()TokenmatchKeyword()ExpressionsubjectExpression()
-
-
-
Method Detail
-
matchKeyword
Token matchKeyword()
-
subjectExpression
Expression subjectExpression()
-
colon
Token colon()
-
-