Uses of Class
com.github.javaparser.ast.type.ClassOrInterfaceType
-
-
Uses of ClassOrInterfaceType in com.github.javaparser
Fields in com.github.javaparser with type parameters of type ClassOrInterfaceType Modifier and Type Field Description static ParseStart<ClassOrInterfaceType>ParseStart. CLASS_OR_INTERFACE_TYPEMethods in com.github.javaparser that return ClassOrInterfaceType Modifier and Type Method Description ClassOrInterfaceTypeJavaParserAdapter. parseClassOrInterfaceType(String type)static ClassOrInterfaceTypeStaticJavaParser. parseClassOrInterfaceType(String type)Parses a Java class or interface type name and returns aClassOrInterfaceTypethat represents it.Methods in com.github.javaparser that return types with arguments of type ClassOrInterfaceType Modifier and Type Method Description ParseResult<ClassOrInterfaceType>JavaParser. parseClassOrInterfaceType(String type)Parses a Java class or interface type name and returns aClassOrInterfaceTypethat represents it. -
Uses of ClassOrInterfaceType in com.github.javaparser.ast.body
Methods in com.github.javaparser.ast.body that return types with arguments of type ClassOrInterfaceType Modifier and Type Method Description NodeList<ClassOrInterfaceType>ClassOrInterfaceDeclaration. getExtendedTypes()NodeList<ClassOrInterfaceType>ClassOrInterfaceDeclaration. getImplementedTypes()NodeList<ClassOrInterfaceType>EnumDeclaration. getImplementedTypes()NodeList<ClassOrInterfaceType>RecordDeclaration. getImplementedTypes()NodeList<ClassOrInterfaceType>ClassOrInterfaceDeclaration. getPermittedTypes()Method parameters in com.github.javaparser.ast.body with type arguments of type ClassOrInterfaceType Modifier and Type Method Description ClassOrInterfaceDeclarationClassOrInterfaceDeclaration. setExtendedTypes(NodeList<ClassOrInterfaceType> extendedTypes)ClassOrInterfaceDeclarationClassOrInterfaceDeclaration. setImplementedTypes(NodeList<ClassOrInterfaceType> implementedTypes)EnumDeclarationEnumDeclaration. setImplementedTypes(NodeList<ClassOrInterfaceType> implementedTypes)RecordDeclarationRecordDeclaration. setImplementedTypes(NodeList<ClassOrInterfaceType> implementedTypes)ClassOrInterfaceDeclarationClassOrInterfaceDeclaration. setPermittedTypes(NodeList<ClassOrInterfaceType> permittedTypes) -
Uses of ClassOrInterfaceType in com.github.javaparser.ast.expr
Methods in com.github.javaparser.ast.expr that return ClassOrInterfaceType Modifier and Type Method Description ClassOrInterfaceTypeObjectCreationExpr. getType()Methods in com.github.javaparser.ast.expr with parameters of type ClassOrInterfaceType Modifier and Type Method Description ObjectCreationExprObjectCreationExpr. setType(ClassOrInterfaceType type)Constructors in com.github.javaparser.ast.expr with parameters of type ClassOrInterfaceType Constructor Description ObjectCreationExpr(Expression scope, ClassOrInterfaceType type, NodeList<Expression> arguments)Defines a call to a constructor.ObjectCreationExpr(Expression scope, ClassOrInterfaceType type, NodeList<Type> typeArguments, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> anonymousClassBody)ObjectCreationExpr(TokenRange tokenRange, Expression scope, ClassOrInterfaceType type, NodeList<Type> typeArguments, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> anonymousClassBody)This constructor is used by the parser and is considered private. -
Uses of ClassOrInterfaceType in com.github.javaparser.ast.nodeTypes
Methods in com.github.javaparser.ast.nodeTypes that return ClassOrInterfaceType Modifier and Type Method Description default ClassOrInterfaceTypeNodeWithExtends. getExtendedTypes(int i)default ClassOrInterfaceTypeNodeWithImplements. getImplementedTypes(int i)Methods in com.github.javaparser.ast.nodeTypes that return types with arguments of type ClassOrInterfaceType Modifier and Type Method Description NodeList<ClassOrInterfaceType>NodeWithExtends. getExtendedTypes()NodeList<ClassOrInterfaceType>NodeWithImplements. getImplementedTypes()Methods in com.github.javaparser.ast.nodeTypes with parameters of type ClassOrInterfaceType Modifier and Type Method Description default NNodeWithExtends. addExtendedType(ClassOrInterfaceType extend)default NNodeWithImplements. addImplementedType(ClassOrInterfaceType implement)default NNodeWithExtends. setExtendedType(int i, ClassOrInterfaceType extend)default NNodeWithImplements. setImplementedType(int i, ClassOrInterfaceType implement)Method parameters in com.github.javaparser.ast.nodeTypes with type arguments of type ClassOrInterfaceType Modifier and Type Method Description NNodeWithExtends. setExtendedTypes(NodeList<ClassOrInterfaceType> extendsList)NNodeWithImplements. setImplementedTypes(NodeList<ClassOrInterfaceType> implementsList) -
Uses of ClassOrInterfaceType in com.github.javaparser.ast.stmt
Constructors in com.github.javaparser.ast.stmt with parameters of type ClassOrInterfaceType Constructor Description CatchClause(NodeList<Modifier> exceptModifier, NodeList<AnnotationExpr> exceptAnnotations, ClassOrInterfaceType exceptType, SimpleName exceptName, BlockStmt body) -
Uses of ClassOrInterfaceType in com.github.javaparser.ast.type
Methods in com.github.javaparser.ast.type that return ClassOrInterfaceType Modifier and Type Method Description ClassOrInterfaceTypeClassOrInterfaceType. asClassOrInterfaceType()ClassOrInterfaceTypeType. asClassOrInterfaceType()ClassOrInterfaceTypeClassOrInterfaceType. clone()ClassOrInterfaceTypeClassOrInterfaceType. removeScope()ClassOrInterfaceTypeClassOrInterfaceType. setAnnotations(NodeList<AnnotationExpr> annotations)ClassOrInterfaceTypeClassOrInterfaceType. setName(SimpleName name)ClassOrInterfaceTypeClassOrInterfaceType. setScope(ClassOrInterfaceType scope)Sets the scopeClassOrInterfaceTypeClassOrInterfaceType. setTypeArguments(NodeList<Type> typeArguments)Sets the typeArgumentsClassOrInterfaceTypePrimitiveType.Primitive. toBoxedType()ClassOrInterfaceTypePrimitiveType. toBoxedType()Methods in com.github.javaparser.ast.type that return types with arguments of type ClassOrInterfaceType Modifier and Type Method Description Optional<ClassOrInterfaceType>ClassOrInterfaceType. getScope()NodeList<ClassOrInterfaceType>TypeParameter. getTypeBound()Return the list ofClassOrInterfaceTypethat this parameter extends.Optional<ClassOrInterfaceType>ClassOrInterfaceType. toClassOrInterfaceType()Optional<ClassOrInterfaceType>Type. toClassOrInterfaceType()Methods in com.github.javaparser.ast.type with parameters of type ClassOrInterfaceType Modifier and Type Method Description ClassOrInterfaceTypeClassOrInterfaceType. setScope(ClassOrInterfaceType scope)Sets the scopeMethod parameters in com.github.javaparser.ast.type with type arguments of type ClassOrInterfaceType Modifier and Type Method Description voidClassOrInterfaceType. ifClassOrInterfaceType(Consumer<ClassOrInterfaceType> action)voidType. ifClassOrInterfaceType(Consumer<ClassOrInterfaceType> action)TypeParameterTypeParameter. setTypeBound(NodeList<ClassOrInterfaceType> typeBound)Constructors in com.github.javaparser.ast.type with parameters of type ClassOrInterfaceType Constructor Description ClassOrInterfaceType(ClassOrInterfaceType scope, SimpleName name, NodeList<Type> typeArguments)ClassOrInterfaceType(ClassOrInterfaceType scope, SimpleName name, NodeList<Type> typeArguments, NodeList<AnnotationExpr> annotations)ClassOrInterfaceType(ClassOrInterfaceType scope, String name)ClassOrInterfaceType(TokenRange tokenRange, ClassOrInterfaceType scope, SimpleName name, NodeList<Type> typeArguments, 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 ClassOrInterfaceType Constructor Description TypeParameter(SimpleName name, NodeList<ClassOrInterfaceType> typeBound, NodeList<AnnotationExpr> annotations)TypeParameter(TokenRange tokenRange, SimpleName name, NodeList<ClassOrInterfaceType> typeBound, NodeList<AnnotationExpr> annotations)This constructor is used by the parser and is considered private.TypeParameter(String name, NodeList<ClassOrInterfaceType> typeBound) -
Uses of ClassOrInterfaceType in com.github.javaparser.ast.visitor
Methods in com.github.javaparser.ast.visitor with parameters of type ClassOrInterfaceType Modifier and Type Method Description VisitableCloneVisitor. visit(ClassOrInterfaceType n, Object arg)BooleanEqualsVisitor. visit(ClassOrInterfaceType n, Visitable arg)List<R>GenericListVisitorAdapter. visit(ClassOrInterfaceType n, A arg)RGenericVisitor. visit(ClassOrInterfaceType n, A arg)RGenericVisitorAdapter. visit(ClassOrInterfaceType n, A arg)RGenericVisitorWithDefaults. visit(ClassOrInterfaceType n, A arg)IntegerHashCodeVisitor. visit(ClassOrInterfaceType n, Void arg)VisitableModifierVisitor. visit(ClassOrInterfaceType n, A arg)BooleanNoCommentEqualsVisitor. visit(ClassOrInterfaceType n, Visitable arg)IntegerNoCommentHashCodeVisitor. visit(ClassOrInterfaceType n, Void arg)voidNodeFinderVisitor. visit(ClassOrInterfaceType n, Range arg)BooleanObjectIdentityEqualsVisitor. visit(ClassOrInterfaceType n, Visitable arg)IntegerObjectIdentityHashCodeVisitor. visit(ClassOrInterfaceType n, Void arg)voidVoidVisitor. visit(ClassOrInterfaceType n, A arg)voidVoidVisitorAdapter. visit(ClassOrInterfaceType n, A arg)voidVoidVisitorWithDefaults. visit(ClassOrInterfaceType n, A arg) -
Uses of ClassOrInterfaceType in com.github.javaparser.printer
Methods in com.github.javaparser.printer with parameters of type ClassOrInterfaceType Modifier and Type Method Description voidDefaultPrettyPrinterVisitor. visit(ClassOrInterfaceType n, Void arg)voidPrettyPrintVisitor. visit(ClassOrInterfaceType n, Void arg)Deprecated.
-