Uses of Class
com.github.javaparser.ast.type.ReferenceType
Packages that use ReferenceType
Package
Description
-
Uses of ReferenceType in com.github.javaparser.ast.body
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
Classes in com.github.javaparser.ast.expr that implement interfaces with type arguments of type 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 ReferenceTypeNodeWithThrownExceptions.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 NNodeWithThrownExceptions.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 TypeClassDescriptionclassTo indicate that a type is an array, it gets wrapped in an ArrayType for every array level it has.classA class or an interface type.classA type parameter.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 TypeMethodDescriptionvoidReferenceType.ifReferenceType(Consumer<ReferenceType> action) voidType.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.