Uses of Class
com.github.javaparser.ast.type.ReferenceType
Packages that use ReferenceType
Package
Description
-
Uses of ReferenceType in com.github.javaparser
Methods in com.github.javaparser that return ReferenceTypeModifier and TypeMethodDescriptionfinal ReferenceType
GeneratedJavaParser.AnnotatedReferenceType()
final ReferenceType
GeneratedJavaParser.ReferenceType
(NodeList<AnnotationExpr> annotations) // TODO: JLS Has type and unannotated type, while JavaParser has type and annotated type. -
Uses of ReferenceType in com.github.javaparser.ast.body
Fields in com.github.javaparser.ast.body with type parameters of type ReferenceTypeModifier and TypeFieldDescriptionprivate NodeList
<ReferenceType> CallableDeclaration.thrownExceptions
private NodeList
<ReferenceType> CompactConstructorDeclaration.thrownExceptions
Methods in com.github.javaparser.ast.body that return types with arguments of type ReferenceTypeModifier and TypeMethodDescriptionCallableDeclaration.getThrownExceptions()
CompactConstructorDeclaration.getThrownExceptions()
Method parameters in com.github.javaparser.ast.body with type arguments of type ReferenceTypeModifier and TypeMethodDescriptionCallableDeclaration.setThrownExceptions
(NodeList<ReferenceType> thrownExceptions) CompactConstructorDeclaration.setThrownExceptions
(NodeList<ReferenceType> thrownExceptions) ConstructorDeclaration.setThrownExceptions
(NodeList<ReferenceType> thrownExceptions) MethodDeclaration.setThrownExceptions
(NodeList<ReferenceType> thrownExceptions) -
Uses of ReferenceType in com.github.javaparser.ast.expr
Fields in com.github.javaparser.ast.expr declared as ReferenceTypeMethods in com.github.javaparser.ast.expr that return ReferenceTypeModifier and TypeMethodDescriptionInstanceOfExpr.getType()
RecordPatternExpr.getType()
The type of RecordPatternExpr must always be a reference type.Methods in com.github.javaparser.ast.expr with parameters of type ReferenceTypeConstructors in com.github.javaparser.ast.expr with parameters of type ReferenceTypeModifierConstructorDescriptionInstanceOfExpr
(Expression expression, ReferenceType type) 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. -
Uses of ReferenceType in com.github.javaparser.ast.nodeTypes
Methods in com.github.javaparser.ast.nodeTypes that return ReferenceTypeModifier and TypeMethodDescriptiondefault ReferenceType
NodeWithThrownExceptions.getThrownException
(int i) Methods in com.github.javaparser.ast.nodeTypes that return types with arguments of type ReferenceTypeMethods in com.github.javaparser.ast.nodeTypes with parameters of type ReferenceTypeModifier and TypeMethodDescriptiondefault N
NodeWithThrownExceptions.addThrownException
(ReferenceType throwType) Adds this type to the throws clauseMethod parameters in com.github.javaparser.ast.nodeTypes with type arguments of type ReferenceTypeModifier and TypeMethodDescriptionNodeWithThrownExceptions.setThrownExceptions
(NodeList<ReferenceType> thrownExceptions) -
Uses of ReferenceType in com.github.javaparser.ast.type
Subclasses of ReferenceType in com.github.javaparser.ast.typeModifier and TypeClassDescriptionclass
To indicate that a type is an array, it gets wrapped in an ArrayType for every array level it has.class
A class or an interface type.class
A type parameter.Fields in com.github.javaparser.ast.type declared as ReferenceTypeModifier and TypeFieldDescriptionprivate ReferenceType
WildcardType.extendedType
private ReferenceType
WildcardType.superType
Fields in com.github.javaparser.ast.type with type parameters of type ReferenceTypeModifier and TypeFieldDescriptionprivate NodeList
<ReferenceType> IntersectionType.elements
private NodeList
<ReferenceType> UnionType.elements
Methods in com.github.javaparser.ast.type that return ReferenceTypeModifier and TypeMethodDescriptionReferenceType.asReferenceType()
Type.asReferenceType()
ReferenceType.clone()
Methods in com.github.javaparser.ast.type that return types with arguments of type ReferenceTypeModifier and TypeMethodDescriptionIntersectionType.getElements()
UnionType.getElements()
WildcardType.getExtendedType()
WildcardType.getSuperType()
ReferenceType.toReferenceType()
Type.toReferenceType()
Methods in com.github.javaparser.ast.type with parameters of type ReferenceTypeModifier and TypeMethodDescriptionWildcardType.setExtendedType
(ReferenceType extendedType) Sets the extended typeWildcardType.setSuperType
(ReferenceType superType) Sets the supertypeMethod parameters in com.github.javaparser.ast.type with type arguments of type ReferenceTypeModifier and TypeMethodDescriptionvoid
ReferenceType.ifReferenceType
(Consumer<ReferenceType> action) void
Type.ifReferenceType
(Consumer<ReferenceType> action) IntersectionType.setElements
(NodeList<ReferenceType> elements) UnionType.setElements
(NodeList<ReferenceType> elements) Constructors in com.github.javaparser.ast.type with parameters of type ReferenceTypeModifierConstructorDescriptionWildcardType
(ReferenceType extendedType) WildcardType
(ReferenceType extendedType, ReferenceType superType, NodeList<AnnotationExpr> annotations) WildcardType
(TokenRange tokenRange, ReferenceType extendedType, ReferenceType superType) This constructor is used by the parser and is considered private.WildcardType
(TokenRange tokenRange, ReferenceType extendedType, ReferenceType superType, NodeList<AnnotationExpr> annotations) This constructor is used by the parser and is considered private.Constructor parameters in com.github.javaparser.ast.type with type arguments of type ReferenceTypeModifierConstructorDescriptionIntersectionType
(NodeList<ReferenceType> elements) IntersectionType
(TokenRange tokenRange, NodeList<ReferenceType> elements) This constructor is used by the parser and is considered private.UnionType
(NodeList<ReferenceType> elements) UnionType
(TokenRange tokenRange, NodeList<ReferenceType> elements) This constructor is used by the parser and is considered private.