public final class ForeachStmt extends Statement implements NodeWithBody<ForeachStmt>
for(Object o: objects) { ... }
It was introduced in Java 5.Node.BreadthFirstIterator, Node.DirectChildrenIterator, Node.ObserverRegistrationMode, Node.ParentsVisitor, Node.Parsedness, Node.PostOrderIterator, Node.PreOrderIterator, Node.TreeTraversalABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, NODE_BY_BEGIN_POSITION, prettyPrinterNoCommentsConfiguration, SYMBOL_RESOLVER_KEY| Constructor and Description |
|---|
ForeachStmt() |
ForeachStmt(TokenRange tokenRange,
VariableDeclarationExpr variable,
Expression iterable,
Statement body)
This constructor is used by the parser and is considered private.
|
ForeachStmt(VariableDeclarationExpr variable,
Expression iterable,
Statement body) |
ForeachStmt(VariableDeclarationExpr variable,
String iterable,
BlockStmt body) |
| Modifier and Type | Method and Description |
|---|---|
<R,A> R |
accept(GenericVisitor<R,A> v,
A arg)
Accept method for visitor support.
|
<A> void |
accept(VoidVisitor<A> v,
A arg)
Accept method for visitor support.
|
ForeachStmt |
asForeachStmt() |
ForeachStmt |
clone() |
Statement |
getBody() |
Expression |
getIterable() |
ForeachStmtMetaModel |
getMetaModel() |
VariableDeclarationExpr |
getVariable() |
void |
ifForeachStmt(Consumer<ForeachStmt> action) |
boolean |
isForeachStmt() |
boolean |
remove(Node node) |
boolean |
replace(Node node,
Node replacementNode) |
ForeachStmt |
setBody(Statement body) |
ForeachStmt |
setIterable(Expression iterable) |
ForeachStmt |
setVariable(VariableDeclarationExpr variable) |
Optional<ForeachStmt> |
toForeachStmt() |
asAssertStmt, asBlockStmt, asBreakStmt, asContinueStmt, asDoStmt, asEmptyStmt, asExplicitConstructorInvocationStmt, asExpressionStmt, asForStmt, asIfStmt, asLabeledStmt, asLocalClassDeclarationStmt, asReturnStmt, asSwitchEntryStmt, asSwitchStmt, asSynchronizedStmt, asThrowStmt, asTryStmt, asUnparsableStmt, asWhileStmt, ifAssertStmt, ifBlockStmt, ifBreakStmt, ifContinueStmt, ifDoStmt, ifEmptyStmt, ifExplicitConstructorInvocationStmt, ifExpressionStmt, ifForStmt, ifIfStmt, ifLabeledStmt, ifLocalClassDeclarationStmt, ifReturnStmt, ifSwitchEntryStmt, ifSwitchStmt, ifSynchronizedStmt, ifThrowStmt, ifTryStmt, ifUnparsableStmt, ifWhileStmt, isAssertStmt, isBlockStmt, isBreakStmt, isContinueStmt, isDoStmt, isEmptyStmt, isExplicitConstructorInvocationStmt, isExpressionStmt, isForStmt, isIfStmt, isLabeledStmt, isLocalClassDeclarationStmt, isReturnStmt, isSwitchEntryStmt, isSwitchStmt, isSynchronizedStmt, isThrowStmt, isTryStmt, isUnparsableStmt, isWhileStmt, toAssertStmt, toBlockStmt, toBreakStmt, toContinueStmt, toDoStmt, toEmptyStmt, toExplicitConstructorInvocationStmt, toExpressionStmt, toForStmt, toIfStmt, toLabeledStmt, toLocalClassDeclarationStmt, toReturnStmt, toSwitchEntryStmt, toSwitchStmt, toSynchronizedStmt, toThrowStmt, toTryStmt, toUnparsableStmt, toWhileStmtaddOrphanComment, containsData, customInitialization, equals, findAll, findAll, findCompilationUnit, findFirst, findFirst, findFirst, findRootNode, getAllContainedComments, getChildNodes, getChildNodesByType, getComment, getData, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getParsed, getRange, getSymbolResolver, getTokenRange, hasComment, hashCode, isRegistered, notifyPropertyChange, register, register, registerForSubtree, remove, removeComment, removeForced, removeOrphanComment, replace, setAsParentNodeOf, setAsParentNodeOf, setBlockComment, setComment, setData, setLineComment, setParentNode, setParsed, setRange, setTokenRange, stream, stream, toString, toString, tryAddImportToParentCompilationUnit, unregister, walk, walk, walkfinalize, getClass, notify, notifyAll, wait, wait, waitcreateBlockStatementAsBodyfindAncestor, findAncestor, findParent, getAncestorOfTypecontainsWithin, getBegin, getEnd, isPositionedAfter, isPositionedBeforepublic ForeachStmt()
public ForeachStmt(VariableDeclarationExpr variable, Expression iterable, Statement body)
public ForeachStmt(TokenRange tokenRange, VariableDeclarationExpr variable, Expression iterable, Statement body)
public ForeachStmt(VariableDeclarationExpr variable, String iterable, BlockStmt body)
public <R,A> R accept(GenericVisitor<R,A> v, A arg)
Visitableaccept in interface VisitableR - the type of the return value of the visitorA - the type the user argument passed to the visitorv - the visitor implementationarg - the argument passed to the visitor (of type A)public <A> void accept(VoidVisitor<A> v, A arg)
Visitablepublic Statement getBody()
getBody in interface NodeWithBody<ForeachStmt>public Expression getIterable()
public VariableDeclarationExpr getVariable()
public ForeachStmt setBody(Statement body)
setBody in interface NodeWithBody<ForeachStmt>public ForeachStmt setIterable(Expression iterable)
public ForeachStmt setVariable(VariableDeclarationExpr variable)
public ForeachStmt clone()
public ForeachStmtMetaModel getMetaModel()
getMetaModel in class Statementpublic boolean isForeachStmt()
isForeachStmt in class Statementpublic ForeachStmt asForeachStmt()
asForeachStmt in class Statementpublic void ifForeachStmt(Consumer<ForeachStmt> action)
ifForeachStmt in class Statementpublic Optional<ForeachStmt> toForeachStmt()
toForeachStmt in class StatementCopyright © 2007–2018. All rights reserved.