Uses of Class
com.github.javaparser.ast.stmt.SwitchEntry
-
Packages that use SwitchEntry Package Description com.github.javaparser.ast.expr com.github.javaparser.ast.nodeTypes com.github.javaparser.ast.stmt com.github.javaparser.ast.visitor com.github.javaparser.printer -
-
Uses of SwitchEntry in com.github.javaparser.ast.expr
Methods in com.github.javaparser.ast.expr that return SwitchEntry Modifier and Type Method Description SwitchEntry
SwitchExpr. 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 SwitchExpr
SwitchExpr. 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 SwitchEntry
SwitchNode. 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 SwitchNode
SwitchNode. setEntries(NodeList<SwitchEntry> entries)
-
Uses of SwitchEntry in com.github.javaparser.ast.stmt
Methods in com.github.javaparser.ast.stmt that return SwitchEntry Modifier and Type Method Description SwitchEntry
SwitchEntry. clone()
SwitchEntry
SwitchStmt. getEntry(int i)
SwitchEntry
SwitchEntry. setLabels(NodeList<Expression> labels)
Sets the labelSwitchEntry
SwitchEntry. setStatements(NodeList<Statement> statements)
SwitchEntry
SwitchEntry. 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 SwitchStmt
SwitchStmt. 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 Visitable
CloneVisitor. visit(SwitchEntry n, Object arg)
Boolean
EqualsVisitor. visit(SwitchEntry n, Visitable arg)
List<R>
GenericListVisitorAdapter. visit(SwitchEntry n, A arg)
R
GenericVisitor. visit(SwitchEntry n, A arg)
R
GenericVisitorAdapter. visit(SwitchEntry n, A arg)
R
GenericVisitorWithDefaults. visit(SwitchEntry n, A arg)
Integer
HashCodeVisitor. visit(SwitchEntry n, Void arg)
Visitable
ModifierVisitor. visit(SwitchEntry n, A arg)
Boolean
NoCommentEqualsVisitor. visit(SwitchEntry n, Visitable arg)
Integer
NoCommentHashCodeVisitor. visit(SwitchEntry n, Void arg)
Boolean
ObjectIdentityEqualsVisitor. visit(SwitchEntry n, Visitable arg)
Integer
ObjectIdentityHashCodeVisitor. visit(SwitchEntry n, Void arg)
void
VoidVisitor. visit(SwitchEntry n, A arg)
void
VoidVisitorAdapter. visit(SwitchEntry n, A arg)
void
VoidVisitorWithDefaults. 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 void
PrettyPrintVisitor. visit(SwitchEntry n, Void arg)
-