Package com.github.javaparser.ast.stmt
Class ForStmt
- java.lang.Object
-
- com.github.javaparser.ast.Node
-
- com.github.javaparser.ast.stmt.Statement
-
- com.github.javaparser.ast.stmt.ForStmt
-
- All Implemented Interfaces:
NodeWithBody<ForStmt>
,NodeWithRange<Node>
,NodeWithTokenRange<Node>
,Observable
,Visitable
,HasParentNode<Node>
,Cloneable
public class ForStmt extends Statement implements NodeWithBody<ForStmt>
The classic for statement
Examples:for(int a=3, b=5; a<99; a++, b++) hello();
for(a=3, b=5; a<99; a++) { hello(); }
for(a(),b();;) hello();
- initialization is a list of expressions. These can be any kind of expression as can be seen in example 3, but the common ones are a single VariableDeclarationExpr (which declares multiple variables) in example 1, or a list of AssignExpr's in example 2.
- compare is an expression, in example 1 and 2 it is a BinaryExpr. In example 3 there is no expression, it is empty.
- update is a list of expressions, in example 1 and 2 they are UnaryExpr's. In example 3 there is no expression, the list empty.
- body is a statement, in example 1 and 3 it is an ExpressionStmt. in example 2 it is a BlockStmt.
- Author:
- Julio Vilmar Gesser
- See Also:
VariableDeclarationExpr
-
-
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 ForStmt()
ForStmt(NodeList<Expression> initialization, Expression compare, NodeList<Expression> update, Statement body)
ForStmt(TokenRange tokenRange, NodeList<Expression> initialization, Expression compare, NodeList<Expression> update, Statement body)
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> void
accept(VoidVisitor<A> v, A arg)
Accept method for visitor support.ForStmt
asForStmt()
ForStmt
clone()
Statement
getBody()
Optional<Expression>
getCompare()
NodeList<Expression>
getInitialization()
ForStmtMetaModel
getMetaModel()
NodeList<Expression>
getUpdate()
void
ifForStmt(Consumer<ForStmt> action)
boolean
isForStmt()
boolean
remove(Node node)
ForStmt
removeCompare()
boolean
replace(Node node, Node replacementNode)
ForStmt
setBody(Statement body)
ForStmt
setCompare(Expression compare)
Sets the compareForStmt
setInitialization(NodeList<Expression> initialization)
ForStmt
setUpdate(NodeList<Expression> update)
Optional<ForStmt>
toForStmt()
-
Methods inherited from class com.github.javaparser.ast.stmt.Statement
asAssertStmt, asBlockStmt, asBreakStmt, asContinueStmt, asDoStmt, asEmptyStmt, asExplicitConstructorInvocationStmt, asExpressionStmt, asForEachStmt, asIfStmt, asLabeledStmt, asLocalClassDeclarationStmt, asReturnStmt, asSwitchStmt, asSynchronizedStmt, asThrowStmt, asTryStmt, asUnparsableStmt, asWhileStmt, ifAssertStmt, ifBlockStmt, ifBreakStmt, ifContinueStmt, ifDoStmt, ifEmptyStmt, ifExplicitConstructorInvocationStmt, ifExpressionStmt, ifForEachStmt, ifIfStmt, ifLabeledStmt, ifLocalClassDeclarationStmt, ifReturnStmt, ifSwitchStmt, ifSynchronizedStmt, ifThrowStmt, ifTryStmt, ifUnparsableStmt, ifWhileStmt, isAssertStmt, isBlockStmt, isBreakStmt, isContinueStmt, isDoStmt, isEmptyStmt, isExplicitConstructorInvocationStmt, isExpressionStmt, isForEachStmt, isIfStmt, isLabeledStmt, isLocalClassDeclarationStmt, isReturnStmt, isSwitchStmt, isSynchronizedStmt, isThrowStmt, isTryStmt, isUnparsableStmt, isWhileStmt, toAssertStmt, toBlockStmt, toBreakStmt, toContinueStmt, toDoStmt, toEmptyStmt, toExplicitConstructorInvocationStmt, toExpressionStmt, toForEachStmt, toIfStmt, toLabeledStmt, toLocalClassDeclarationStmt, toReturnStmt, toSwitchStmt, 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.NodeWithBody
createBlockStatementAsBody
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithRange
containsWithin, getBegin, getEnd
-
-
-
-
Constructor Detail
-
ForStmt
public ForStmt()
-
ForStmt
public ForStmt(NodeList<Expression> initialization, Expression compare, NodeList<Expression> update, Statement body)
-
ForStmt
public ForStmt(TokenRange tokenRange, NodeList<Expression> initialization, Expression compare, NodeList<Expression> update, Statement body)
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:Visitable
Accept method for visitor support.- Specified by:
accept
in 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:Visitable
Accept method for visitor support.
-
getBody
public Statement getBody()
- Specified by:
getBody
in interfaceNodeWithBody<ForStmt>
-
getCompare
public Optional<Expression> getCompare()
-
getInitialization
public NodeList<Expression> getInitialization()
-
getUpdate
public NodeList<Expression> getUpdate()
-
setBody
public ForStmt setBody(Statement body)
- Specified by:
setBody
in interfaceNodeWithBody<ForStmt>
-
setCompare
public ForStmt setCompare(Expression compare)
Sets the compare- Parameters:
compare
- the compare, can be null- Returns:
- this, the ForStmt
-
setInitialization
public ForStmt setInitialization(NodeList<Expression> initialization)
-
setUpdate
public ForStmt setUpdate(NodeList<Expression> update)
-
removeCompare
public ForStmt removeCompare()
-
getMetaModel
public ForStmtMetaModel getMetaModel()
- Overrides:
getMetaModel
in classStatement
- Returns:
- get JavaParser specific node introspection information.
-
-