Uses of Class
com.github.javaparser.ast.expr.VariableDeclarationExpr
-
-
Uses of VariableDeclarationExpr in com.github.javaparser
Fields in com.github.javaparser with type parameters of type VariableDeclarationExpr Modifier and Type Field Description static ParseStart<VariableDeclarationExpr>
ParseStart. VARIABLE_DECLARATION_EXPR
Methods in com.github.javaparser that return VariableDeclarationExpr Modifier and Type Method Description static VariableDeclarationExpr
StaticJavaParser. parseVariableDeclarationExpr(String declaration)
Parses a variable declaration expression and returns aVariableDeclarationExpr
that represents it.Methods in com.github.javaparser that return types with arguments of type VariableDeclarationExpr Modifier and Type Method Description ParseResult<VariableDeclarationExpr>
JavaParser. parseVariableDeclarationExpr(String declaration)
Parses a variable declaration expression and returns aVariableDeclarationExpr
that represents it. -
Uses of VariableDeclarationExpr in com.github.javaparser.ast.expr
Methods in com.github.javaparser.ast.expr that return VariableDeclarationExpr Modifier and Type Method Description VariableDeclarationExpr
Expression. asVariableDeclarationExpr()
VariableDeclarationExpr
VariableDeclarationExpr. asVariableDeclarationExpr()
VariableDeclarationExpr
VariableDeclarationExpr. clone()
VariableDeclarationExpr
VariableDeclarationExpr. setAnnotations(NodeList<AnnotationExpr> annotations)
VariableDeclarationExpr
VariableDeclarationExpr. setModifiers(NodeList<Modifier> modifiers)
VariableDeclarationExpr
VariableDeclarationExpr. setVariables(NodeList<VariableDeclarator> variables)
Methods in com.github.javaparser.ast.expr that return types with arguments of type VariableDeclarationExpr Modifier and Type Method Description Optional<VariableDeclarationExpr>
Expression. toVariableDeclarationExpr()
Optional<VariableDeclarationExpr>
VariableDeclarationExpr. toVariableDeclarationExpr()
Method parameters in com.github.javaparser.ast.expr with type arguments of type VariableDeclarationExpr Modifier and Type Method Description void
Expression. ifVariableDeclarationExpr(Consumer<VariableDeclarationExpr> action)
void
VariableDeclarationExpr. ifVariableDeclarationExpr(Consumer<VariableDeclarationExpr> action)
-
Uses of VariableDeclarationExpr in com.github.javaparser.ast.stmt
Methods in com.github.javaparser.ast.stmt that return VariableDeclarationExpr Modifier and Type Method Description VariableDeclarationExpr
ForEachStmt. getVariable()
Methods in com.github.javaparser.ast.stmt with parameters of type VariableDeclarationExpr Modifier and Type Method Description ForEachStmt
ForEachStmt. setVariable(VariableDeclarationExpr variable)
Constructors in com.github.javaparser.ast.stmt with parameters of type VariableDeclarationExpr Constructor Description 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. -
Uses of VariableDeclarationExpr in com.github.javaparser.ast.validator.chunks
Methods in com.github.javaparser.ast.validator.chunks with parameters of type VariableDeclarationExpr Modifier and Type Method Description void
ModifierValidator. visit(VariableDeclarationExpr n, ProblemReporter reporter)
-
Uses of VariableDeclarationExpr in com.github.javaparser.ast.visitor
-
Uses of VariableDeclarationExpr in com.github.javaparser.printer
Methods in com.github.javaparser.printer with parameters of type VariableDeclarationExpr Modifier and Type Method Description void
PrettyPrintVisitor. visit(VariableDeclarationExpr n, Void arg)
-