Uses of Class
com.github.javaparser.ast.stmt.BreakStmt
-
Packages that use BreakStmt Package Description com.github.javaparser com.github.javaparser.ast.stmt com.github.javaparser.ast.visitor com.github.javaparser.printer com.github.javaparser.symbolsolver.javaparsermodel Implementation of model based on JavaParser.com.github.javaparser.symbolsolver.resolution.typeinference -
-
Uses of BreakStmt in com.github.javaparser
Methods in com.github.javaparser that return BreakStmt Modifier and Type Method Description BreakStmt
GeneratedJavaParser. BreakStatement()
https://docs.oracle.com/javase/specs/jls/se15/html/jls-14.html#jls-14.15 -
Uses of BreakStmt in com.github.javaparser.ast.stmt
Methods in com.github.javaparser.ast.stmt that return BreakStmt Modifier and Type Method Description BreakStmt
BreakStmt. asBreakStmt()
BreakStmt
Statement. asBreakStmt()
BreakStmt
BreakStmt. clone()
BreakStmt
BreakStmt. removeLabel()
BreakStmt
BreakStmt. setLabel(SimpleName label)
Sets the labelMethods in com.github.javaparser.ast.stmt that return types with arguments of type BreakStmt Modifier and Type Method Description java.util.Optional<BreakStmt>
BreakStmt. toBreakStmt()
java.util.Optional<BreakStmt>
Statement. toBreakStmt()
Method parameters in com.github.javaparser.ast.stmt with type arguments of type BreakStmt Modifier and Type Method Description void
BreakStmt. ifBreakStmt(java.util.function.Consumer<BreakStmt> action)
void
Statement. ifBreakStmt(java.util.function.Consumer<BreakStmt> action)
-
Uses of BreakStmt in com.github.javaparser.ast.visitor
Methods in com.github.javaparser.ast.visitor with parameters of type BreakStmt Modifier and Type Method Description Visitable
CloneVisitor. visit(BreakStmt n, java.lang.Object arg)
java.lang.Boolean
EqualsVisitor. visit(BreakStmt n, Visitable arg)
java.util.List<R>
GenericListVisitorAdapter. visit(BreakStmt n, A arg)
R
GenericVisitor. visit(BreakStmt n, A arg)
R
GenericVisitorAdapter. visit(BreakStmt n, A arg)
R
GenericVisitorWithDefaults. visit(BreakStmt n, A arg)
java.lang.Integer
HashCodeVisitor. visit(BreakStmt n, java.lang.Void arg)
Visitable
ModifierVisitor. visit(BreakStmt n, A arg)
java.lang.Boolean
NoCommentEqualsVisitor. visit(BreakStmt n, Visitable arg)
java.lang.Integer
NoCommentHashCodeVisitor. visit(BreakStmt n, java.lang.Void arg)
void
NodeFinderVisitor. visit(BreakStmt n, Range arg)
java.lang.Boolean
ObjectIdentityEqualsVisitor. visit(BreakStmt n, Visitable arg)
java.lang.Integer
ObjectIdentityHashCodeVisitor. visit(BreakStmt n, java.lang.Void arg)
void
VoidVisitor. visit(BreakStmt n, A arg)
void
VoidVisitorAdapter. visit(BreakStmt n, A arg)
void
VoidVisitorWithDefaults. visit(BreakStmt n, A arg)
-
Uses of BreakStmt in com.github.javaparser.printer
Methods in com.github.javaparser.printer with parameters of type BreakStmt Modifier and Type Method Description void
DefaultPrettyPrinterVisitor. visit(BreakStmt n, java.lang.Void arg)
void
PrettyPrintVisitor. visit(BreakStmt n, java.lang.Void arg)
Deprecated. -
Uses of BreakStmt in com.github.javaparser.symbolsolver.javaparsermodel
Methods in com.github.javaparser.symbolsolver.javaparsermodel with parameters of type BreakStmt Modifier and Type Method Description ResolvedType
DefaultVisitorAdapter. visit(BreakStmt node, java.lang.Boolean aBoolean)
java.lang.Boolean
NormalCompletionVisitor. visit(BreakStmt breakStmt, java.lang.Void unused)
A break statement cannot complete normally. -
Uses of BreakStmt in com.github.javaparser.symbolsolver.resolution.typeinference
Methods in com.github.javaparser.symbolsolver.resolution.typeinference with parameters of type BreakStmt Modifier and Type Method Description Statement
ControlFlowLogic. breakTarget(BreakStmt breakStmt)
A break statement with no label attempts to transfer control to the innermost enclosing switch, while, do, or for statement of the immediately enclosing method or initializer; this statement, which is called the break target, then immediately completes normally.boolean
ControlFlowLogic. exitTheStatement(BreakStmt breakStmt)
A reachable break statement exits a statement if, within the break target, either there are no try statements whose try blocks contain the break statement, or there are try statements whose try blocks contain the break statement and all finally clauses of those try statements can complete normally.
-