Uses of Class
com.github.javaparser.ast.expr.PatternExpr
-
Packages that use PatternExpr Package Description com.github.javaparser.ast.expr -
-
Uses of PatternExpr in com.github.javaparser.ast.expr
Subclasses of PatternExpr in com.github.javaparser.ast.expr Modifier and Type Class Description class
RecordPatternExpr
Record Patternsclass
TypePatternExpr
The instanceof statementMethods in com.github.javaparser.ast.expr that return PatternExpr Modifier and Type Method Description PatternExpr
Expression. asPatternExpr()
PatternExpr
PatternExpr. asPatternExpr()
PatternExpr
PatternExpr. clone()
PatternExpr
PatternExpr. setType(Type type)
Methods in com.github.javaparser.ast.expr that return types with arguments of type PatternExpr Modifier and Type Method Description Optional<PatternExpr>
InstanceOfExpr. getPattern()
NodeList<PatternExpr>
RecordPatternExpr. getPatternList()
Optional<PatternExpr>
Expression. toPatternExpr()
Optional<PatternExpr>
PatternExpr. toPatternExpr()
Methods in com.github.javaparser.ast.expr with parameters of type PatternExpr Modifier and Type Method Description InstanceOfExpr
InstanceOfExpr. setPattern(PatternExpr pattern)
Method parameters in com.github.javaparser.ast.expr with type arguments of type PatternExpr Modifier and Type Method Description void
Expression. ifPatternExpr(Consumer<PatternExpr> action)
void
PatternExpr. ifPatternExpr(Consumer<PatternExpr> action)
RecordPatternExpr
RecordPatternExpr. setPatternList(NodeList<PatternExpr> patternList)
Constructors in com.github.javaparser.ast.expr with parameters of type PatternExpr Constructor Description InstanceOfExpr(Expression expression, ReferenceType type, PatternExpr pattern)
InstanceOfExpr(TokenRange tokenRange, Expression expression, ReferenceType type, PatternExpr pattern)
This constructor is used by the parser and is considered private.
-