Uses of Class
com.github.javaparser.ast.type.ReferenceType
-
Packages that use ReferenceType Package Description com.github.javaparser.ast.body com.github.javaparser.ast.expr com.github.javaparser.ast.nodeTypes com.github.javaparser.ast.type -
-
Uses of ReferenceType in com.github.javaparser.ast.body
Methods in com.github.javaparser.ast.body that return types with arguments of type ReferenceType Modifier and Type Method Description NodeList<ReferenceType>CallableDeclaration. getThrownExceptions()NodeList<ReferenceType>CompactConstructorDeclaration. getThrownExceptions()Method parameters in com.github.javaparser.ast.body with type arguments of type ReferenceType Modifier and Type Method Description TCallableDeclaration. setThrownExceptions(NodeList<ReferenceType> thrownExceptions)CompactConstructorDeclarationCompactConstructorDeclaration. setThrownExceptions(NodeList<ReferenceType> thrownExceptions)ConstructorDeclarationConstructorDeclaration. setThrownExceptions(NodeList<ReferenceType> thrownExceptions)MethodDeclarationMethodDeclaration. setThrownExceptions(NodeList<ReferenceType> thrownExceptions) -
Uses of ReferenceType in com.github.javaparser.ast.expr
Methods in com.github.javaparser.ast.expr that return ReferenceType Modifier and Type Method Description ReferenceTypeInstanceOfExpr. getType()ReferenceTypeRecordPatternExpr. getType()The type of RecordPatternExpr must always be a reference type.Methods in com.github.javaparser.ast.expr with parameters of type ReferenceType Modifier and Type Method Description InstanceOfExprInstanceOfExpr. setType(ReferenceType type)Constructors in com.github.javaparser.ast.expr with parameters of type ReferenceType Constructor Description InstanceOfExpr(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 ReferenceType Modifier and Type Method Description default ReferenceTypeNodeWithThrownExceptions. getThrownException(int i)Methods in com.github.javaparser.ast.nodeTypes that return types with arguments of type ReferenceType Modifier and Type Method Description NodeList<ReferenceType>NodeWithThrownExceptions. getThrownExceptions()Methods in com.github.javaparser.ast.nodeTypes with parameters of type ReferenceType Modifier and Type Method Description default NNodeWithThrownExceptions. addThrownException(ReferenceType throwType)Adds this type to the throws clauseMethod parameters in com.github.javaparser.ast.nodeTypes with type arguments of type ReferenceType Modifier and Type Method Description NNodeWithThrownExceptions. setThrownExceptions(NodeList<ReferenceType> thrownExceptions) -
Uses of ReferenceType in com.github.javaparser.ast.type
Subclasses of ReferenceType in com.github.javaparser.ast.type Modifier and Type Class Description classArrayTypeTo indicate that a type is an array, it gets wrapped in an ArrayType for every array level it has.classClassOrInterfaceTypeA class or an interface type.classTypeParameterA type parameter.Methods in com.github.javaparser.ast.type that return ReferenceType Modifier and Type Method Description ReferenceTypeReferenceType. asReferenceType()ReferenceTypeType. asReferenceType()ReferenceTypeReferenceType. clone()Methods in com.github.javaparser.ast.type that return types with arguments of type ReferenceType Modifier and Type Method Description NodeList<ReferenceType>IntersectionType. getElements()NodeList<ReferenceType>UnionType. getElements()Optional<ReferenceType>WildcardType. getExtendedType()Optional<ReferenceType>WildcardType. getSuperType()Optional<ReferenceType>ReferenceType. toReferenceType()Optional<ReferenceType>Type. toReferenceType()Methods in com.github.javaparser.ast.type with parameters of type ReferenceType Modifier and Type Method Description WildcardTypeWildcardType. setExtendedType(ReferenceType extendedType)Sets the extended typeWildcardTypeWildcardType. setSuperType(ReferenceType superType)Sets the supertypeMethod parameters in com.github.javaparser.ast.type with type arguments of type ReferenceType Modifier and Type Method Description voidReferenceType. ifReferenceType(Consumer<ReferenceType> action)voidType. ifReferenceType(Consumer<ReferenceType> action)IntersectionTypeIntersectionType. setElements(NodeList<ReferenceType> elements)UnionTypeUnionType. setElements(NodeList<ReferenceType> elements)Constructors in com.github.javaparser.ast.type with parameters of type ReferenceType Constructor Description WildcardType(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 ReferenceType Constructor Description IntersectionType(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.
-