NodeWithBody<ForeachStmt>
, NodeWithRange<ForeachStmt>
, NodeWithTokenRange<ForeachStmt>
, Observable
, Visitable
, HasParentNode<ForeachStmt>
, Cloneable
public final class ForeachStmt extends Statement implements NodeWithBody<ForeachStmt>
for(Object o: objects) { ... }
Node.ObserverRegistrationMode, Node.Parsedness
ABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, NODE_BY_BEGIN_POSITION, prettyPrinterNoCommentsConfiguration
Constructor | Description |
---|---|
ForeachStmt() |
|
ForeachStmt(VariableDeclarationExpr variable,
Expression iterable,
Statement body) |
|
ForeachStmt(VariableDeclarationExpr variable,
String iterable,
BlockStmt body) |
|
ForeachStmt(TokenRange tokenRange,
VariableDeclarationExpr variable,
Expression iterable,
Statement body) |
This constructor is used by the parser and is considered private.
|
Modifier and Type | Method | 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 |
clone() |
|
Statement |
getBody() |
|
Expression |
getIterable() |
|
ForeachStmtMetaModel |
getMetaModel() |
|
VariableDeclarationExpr |
getVariable() |
|
boolean |
remove(Node node) |
|
boolean |
replace(Node node,
Node replacementNode) |
|
ForeachStmt |
setBody(Statement body) |
|
ForeachStmt |
setIterable(Expression iterable) |
|
ForeachStmt |
setVariable(VariableDeclarationExpr variable) |
getAncestorOfType
addOrphanComment, customInitialization, equals, getAllContainedComments, getChildNodes, getChildNodesByType, getComment, getData, getNodeLists, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getParsed, getRange, getTokenRange, hasComment, hashCode, isRegistered, notifyPropertyChange, register, register, registerForSubtree, remove, removeComment, removeForced, removeOrphanComment, replace, setAsParentNodeOf, setAsParentNodeOf, setBlockComment, setComment, setData, setLineComment, setParentNode, setParsed, setRange, setTokenRange, toString, toString, tryAddImportToParentCompilationUnit, unregister
createBlockStatementAsBody
containsWithin, getBegin, getEnd, isPositionedAfter, isPositionedBefore
public ForeachStmt()
public ForeachStmt(VariableDeclarationExpr variable, Expression iterable, Statement body)
@Generated("com.github.javaparser.generator.core.node.MainConstructorGenerator") 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)
Visitable
accept
in interface Visitable
R
- 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)
Visitable
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public Statement getBody()
getBody
in interface NodeWithBody<ForeachStmt>
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public Expression getIterable()
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public VariableDeclarationExpr getVariable()
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public ForeachStmt setBody(Statement body)
setBody
in interface NodeWithBody<ForeachStmt>
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public ForeachStmt setIterable(Expression iterable)
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public ForeachStmt setVariable(VariableDeclarationExpr variable)
@Generated("com.github.javaparser.generator.core.node.RemoveMethodGenerator") public boolean remove(Node node)
@Generated("com.github.javaparser.generator.core.node.CloneGenerator") public ForeachStmt clone()
@Generated("com.github.javaparser.generator.core.node.GetMetaModelGenerator") public ForeachStmtMetaModel getMetaModel()
getMetaModel
in class Statement
@Generated("com.github.javaparser.generator.core.node.ReplaceMethodGenerator") public boolean replace(Node node, Node replacementNode)
Copyright © 2007–2019. All rights reserved.