Package com.github.javaparser.ast.stmt
Class SwitchStmt
- java.lang.Object
-
- com.github.javaparser.ast.Node
-
- com.github.javaparser.ast.stmt.Statement
-
- com.github.javaparser.ast.stmt.SwitchStmt
-
- All Implemented Interfaces:
NodeWithRange<Node>,NodeWithTokenRange<Node>,SwitchNode,Observable,Visitable,HasParentNode<Node>,Cloneable
public class SwitchStmt extends Statement implements SwitchNode
The switch statement
Java 1.0-1.4
The basic C-like switch statement. It can switch only on integers.switch(x) { case 5: case 6: a=100; break; case 9: a=33; break; default: throw new IllegalStateException(); };
Inswitch(a) { ... }the selector is "a", and the contents of the { ... } are the entries.Java 5-6
Switching can now also be done on enum constants.Java 7-11
Switching can now also be done on strings.Java 12-
In preparation for pattern matching, lots of changes are made:- multiple labels per case
- a -> syntax that does not fall through.
- break can take any expression (usable in the
SwitchExpr) - switch can be used as an expression (it becomes a
SwitchExpr)
switch(x) { case BANANA,PEAR: b=10; break; default: b=5; };switch(x) { case 5,6 -> println("uhuh"); default -> println("nope"); };- Author:
- Julio Vilmar Gesser
- See Also:
SwitchEntry,SwitchExpr,SwitchNode
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.github.javaparser.ast.Node
Node.BreadthFirstIterator, Node.DirectChildrenIterator, Node.ObserverRegistrationMode, Node.ParentsVisitor, Node.Parsedness, Node.PostOrderIterator, Node.PreOrderIterator, Node.TreeTraversal
-
-
Field Summary
-
Fields inherited from class com.github.javaparser.ast.Node
ABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, NODE_BY_BEGIN_POSITION, prettyPrinterNoCommentsConfiguration, SYMBOL_RESOLVER_KEY
-
-
Constructor Summary
Constructors Constructor Description SwitchStmt()SwitchStmt(Expression selector, NodeList<SwitchEntry> entries)SwitchStmt(TokenRange tokenRange, Expression selector, NodeList<SwitchEntry> entries)This constructor is used by the parser and is considered private.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,A>
Raccept(GenericVisitor<R,A> v, A arg)Accept method for visitor support.<A> voidaccept(VoidVisitor<A> v, A arg)Accept method for visitor support.SwitchStmtasSwitchStmt()SwitchStmtclone()NodeList<SwitchEntry>getEntries()SwitchEntrygetEntry(int i)SwitchStmtMetaModelgetMetaModel()ExpressiongetSelector()voidifSwitchStmt(Consumer<SwitchStmt> action)booleanisSwitchStmt()booleanremove(Node node)booleanreplace(Node node, Node replacementNode)SwitchStmtsetEntries(NodeList<SwitchEntry> entries)SwitchStmtsetSelector(Expression selector)Optional<SwitchStmt>toSwitchStmt()-
Methods inherited from class com.github.javaparser.ast.stmt.Statement
asAssertStmt, asBlockStmt, asBreakStmt, asContinueStmt, asDoStmt, asEmptyStmt, asExplicitConstructorInvocationStmt, asExpressionStmt, asForEachStmt, asForStmt, asIfStmt, asLabeledStmt, asLocalClassDeclarationStmt, asReturnStmt, asSynchronizedStmt, asThrowStmt, asTryStmt, asUnparsableStmt, asWhileStmt, ifAssertStmt, ifBlockStmt, ifBreakStmt, ifContinueStmt, ifDoStmt, ifEmptyStmt, ifExplicitConstructorInvocationStmt, ifExpressionStmt, ifForEachStmt, ifForStmt, ifIfStmt, ifLabeledStmt, ifLocalClassDeclarationStmt, ifReturnStmt, ifSynchronizedStmt, ifThrowStmt, ifTryStmt, ifUnparsableStmt, ifWhileStmt, isAssertStmt, isBlockStmt, isBreakStmt, isContinueStmt, isDoStmt, isEmptyStmt, isExplicitConstructorInvocationStmt, isExpressionStmt, isForEachStmt, isForStmt, isIfStmt, isLabeledStmt, isLocalClassDeclarationStmt, isReturnStmt, isSynchronizedStmt, isThrowStmt, isTryStmt, isUnparsableStmt, isWhileStmt, toAssertStmt, toBlockStmt, toBreakStmt, toContinueStmt, toDoStmt, toEmptyStmt, toExplicitConstructorInvocationStmt, toExpressionStmt, toForEachStmt, toForStmt, toIfStmt, toLabeledStmt, toLocalClassDeclarationStmt, toReturnStmt, toSynchronizedStmt, toThrowStmt, toTryStmt, toUnparsableStmt, toWhileStmt
-
Methods inherited from class com.github.javaparser.ast.Node
addOrphanComment, containsData, customInitialization, equals, findAll, findAll, findCompilationUnit, findFirst, findFirst, findFirst, findRootNode, getAllContainedComments, getChildNodes, getChildNodesByType, getComment, getData, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getParsed, getRange, getSymbolResolver, getTokenRange, hashCode, isRegistered, notifyPropertyChange, register, register, registerForSubtree, remove, removeComment, removeData, removeForced, removeOrphanComment, replace, setAsParentNodeOf, setAsParentNodeOf, setBlockComment, setComment, setData, setLineComment, setParentNode, setParsed, setRange, setTokenRange, stream, stream, toString, toString, tryAddImportToParentCompilationUnit, unregister, walk, walk, walk
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.github.javaparser.HasParentNode
findAncestor, findAncestor
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithRange
containsWithin, getBegin, getEnd
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.SwitchNode
getComment
-
-
-
-
Constructor Detail
-
SwitchStmt
public SwitchStmt()
-
SwitchStmt
public SwitchStmt(Expression selector, NodeList<SwitchEntry> entries)
-
SwitchStmt
public SwitchStmt(TokenRange tokenRange, Expression selector, NodeList<SwitchEntry> entries)
This constructor is used by the parser and is considered private.
-
-
Method Detail
-
accept
public <R,A> R accept(GenericVisitor<R,A> v, A arg)
Description copied from interface:VisitableAccept method for visitor support.- Specified by:
acceptin interfaceVisitable- Type Parameters:
R- the type of the return value of the visitorA- the type the user argument passed to the visitor- Parameters:
v- the visitor implementationarg- the argument passed to the visitor (of type A)- Returns:
- the result of the visit (of type R)
-
accept
public <A> void accept(VoidVisitor<A> v, A arg)
Description copied from interface:VisitableAccept method for visitor support.
-
getEntries
public NodeList<SwitchEntry> getEntries()
- Specified by:
getEntriesin interfaceSwitchNode
-
getEntry
public SwitchEntry getEntry(int i)
- Specified by:
getEntryin interfaceSwitchNode
-
getSelector
public Expression getSelector()
- Specified by:
getSelectorin interfaceSwitchNode
-
setEntries
public SwitchStmt setEntries(NodeList<SwitchEntry> entries)
- Specified by:
setEntriesin interfaceSwitchNode
-
setSelector
public SwitchStmt setSelector(Expression selector)
- Specified by:
setSelectorin interfaceSwitchNode
-
remove
public boolean remove(Node node)
- Specified by:
removein interfaceSwitchNode- Overrides:
removein classStatement
-
clone
public SwitchStmt clone()
- Specified by:
clonein interfaceSwitchNode- Overrides:
clonein classStatement
-
getMetaModel
public SwitchStmtMetaModel getMetaModel()
- Overrides:
getMetaModelin classStatement- Returns:
- get JavaParser specific node introspection information.
-
replace
public boolean replace(Node node, Node replacementNode)
- Specified by:
replacein interfaceSwitchNode- Overrides:
replacein classStatement
-
isSwitchStmt
public boolean isSwitchStmt()
- Overrides:
isSwitchStmtin classStatement
-
asSwitchStmt
public SwitchStmt asSwitchStmt()
- Overrides:
asSwitchStmtin classStatement
-
ifSwitchStmt
public void ifSwitchStmt(Consumer<SwitchStmt> action)
- Overrides:
ifSwitchStmtin classStatement
-
toSwitchStmt
public Optional<SwitchStmt> toSwitchStmt()
- Overrides:
toSwitchStmtin classStatement
-
-