Uses of Class
com.github.javaparser.ast.stmt.SwitchEntry
-
Packages that use SwitchEntry Package Description com.github.javaparser com.github.javaparser.ast.expr com.github.javaparser.ast.nodeTypes 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.javaparsermodel.contexts -
-
Uses of SwitchEntry in com.github.javaparser
Methods in com.github.javaparser that return SwitchEntry Modifier and Type Method Description SwitchEntryGeneratedJavaParser. SwitchEntry()Note that theSwitchBlock(JLS) andSwitchEntry(JavaParser) are equivlent. -
Uses of SwitchEntry in com.github.javaparser.ast.expr
Fields in com.github.javaparser.ast.expr with type parameters of type SwitchEntry Modifier and Type Field Description private NodeList<SwitchEntry>SwitchExpr. entriesMethods in com.github.javaparser.ast.expr that return SwitchEntry Modifier and Type Method Description SwitchEntrySwitchExpr. getEntry(int i)Methods in com.github.javaparser.ast.expr that return types with arguments of type SwitchEntry Modifier and Type Method Description NodeList<SwitchEntry>SwitchExpr. getEntries()Method parameters in com.github.javaparser.ast.expr with type arguments of type SwitchEntry Modifier and Type Method Description SwitchExprSwitchExpr. setEntries(NodeList<SwitchEntry> entries)Constructor parameters in com.github.javaparser.ast.expr with type arguments of type SwitchEntry Constructor Description SwitchExpr(Expression selector, NodeList<SwitchEntry> entries)SwitchExpr(TokenRange tokenRange, Expression selector, NodeList<SwitchEntry> entries)This constructor is used by the parser and is considered private. -
Uses of SwitchEntry in com.github.javaparser.ast.nodeTypes
Methods in com.github.javaparser.ast.nodeTypes that return SwitchEntry Modifier and Type Method Description SwitchEntrySwitchNode. getEntry(int i)Methods in com.github.javaparser.ast.nodeTypes that return types with arguments of type SwitchEntry Modifier and Type Method Description NodeList<SwitchEntry>SwitchNode. getEntries()Method parameters in com.github.javaparser.ast.nodeTypes with type arguments of type SwitchEntry Modifier and Type Method Description SwitchNodeSwitchNode. setEntries(NodeList<SwitchEntry> entries) -
Uses of SwitchEntry in com.github.javaparser.ast.stmt
Fields in com.github.javaparser.ast.stmt with type parameters of type SwitchEntry Modifier and Type Field Description private NodeList<SwitchEntry>SwitchStmt. entriesMethods in com.github.javaparser.ast.stmt that return SwitchEntry Modifier and Type Method Description SwitchEntrySwitchEntry. clone()SwitchEntrySwitchStmt. getEntry(int i)SwitchEntrySwitchEntry. removeGuard()SwitchEntrySwitchEntry. setDefault(boolean isDefault)SwitchEntrySwitchEntry. setGuard(Expression guard)SwitchEntrySwitchEntry. setLabels(NodeList<Expression> labels)Sets the labelSwitchEntrySwitchEntry. setStatements(NodeList<Statement> statements)SwitchEntrySwitchEntry. setType(SwitchEntry.Type type)Methods in com.github.javaparser.ast.stmt that return types with arguments of type SwitchEntry Modifier and Type Method Description NodeList<SwitchEntry>SwitchStmt. getEntries()Method parameters in com.github.javaparser.ast.stmt with type arguments of type SwitchEntry Modifier and Type Method Description SwitchStmtSwitchStmt. setEntries(NodeList<SwitchEntry> entries)Constructor parameters in com.github.javaparser.ast.stmt with type arguments of type SwitchEntry Constructor Description SwitchStmt(Expression selector, NodeList<SwitchEntry> entries)SwitchStmt(TokenRange tokenRange, Expression selector, NodeList<SwitchEntry> entries)This constructor is used by the parser and is considered private. -
Uses of SwitchEntry in com.github.javaparser.ast.visitor
Methods in com.github.javaparser.ast.visitor with parameters of type SwitchEntry Modifier and Type Method Description VisitableCloneVisitor. visit(SwitchEntry n, java.lang.Object arg)java.lang.BooleanEqualsVisitor. visit(SwitchEntry n, Visitable arg)java.util.List<R>GenericListVisitorAdapter. visit(SwitchEntry n, A arg)RGenericVisitor. visit(SwitchEntry n, A arg)RGenericVisitorAdapter. visit(SwitchEntry n, A arg)RGenericVisitorWithDefaults. visit(SwitchEntry n, A arg)java.lang.IntegerHashCodeVisitor. visit(SwitchEntry n, java.lang.Void arg)VisitableModifierVisitor. visit(SwitchEntry n, A arg)java.lang.BooleanNoCommentEqualsVisitor. visit(SwitchEntry n, Visitable arg)java.lang.IntegerNoCommentHashCodeVisitor. visit(SwitchEntry n, java.lang.Void arg)voidNodeFinderVisitor. visit(SwitchEntry n, Range arg)java.lang.BooleanObjectIdentityEqualsVisitor. visit(SwitchEntry n, Visitable arg)java.lang.IntegerObjectIdentityHashCodeVisitor. visit(SwitchEntry n, java.lang.Void arg)voidVoidVisitor. visit(SwitchEntry n, A arg)voidVoidVisitorAdapter. visit(SwitchEntry n, A arg)voidVoidVisitorWithDefaults. visit(SwitchEntry n, A arg) -
Uses of SwitchEntry in com.github.javaparser.printer
Methods in com.github.javaparser.printer with parameters of type SwitchEntry Modifier and Type Method Description voidDefaultPrettyPrinterVisitor. visit(SwitchEntry n, java.lang.Void arg)voidPrettyPrintVisitor. visit(SwitchEntry n, java.lang.Void arg)Deprecated. -
Uses of SwitchEntry in com.github.javaparser.symbolsolver.javaparsermodel
Methods in com.github.javaparser.symbolsolver.javaparsermodel with parameters of type SwitchEntry Modifier and Type Method Description private booleanNormalCompletionVisitor. switchRuleCompletesNormally(SwitchEntry switchEntry, java.lang.Void unused)A switch statement whose switch block consists of switch rules can complete normally iff at least one of the following is true: - One of the switch rules introduces a switch rule expression (which is necessarily a statement expression).ResolvedTypeDefaultVisitorAdapter. visit(SwitchEntry node, java.lang.Boolean aBoolean) -
Uses of SwitchEntry in com.github.javaparser.symbolsolver.javaparsermodel.contexts
Constructors in com.github.javaparser.symbolsolver.javaparsermodel.contexts with parameters of type SwitchEntry Constructor Description SwitchEntryContext(SwitchEntry wrappedNode, TypeSolver typeSolver)
-