Uses of Class
com.github.javaparser.ast.type.TypeParameter
-
Packages that use TypeParameter Package Description com.github.javaparser com.github.javaparser.ast.body com.github.javaparser.ast.nodeTypes com.github.javaparser.ast.type com.github.javaparser.ast.visitor com.github.javaparser.printer com.github.javaparser.symbolsolver.javaparsermodel Implementation of model based on JavaParser.com.github.javaparser.symbolsolver.javaparsermodel.declarations -
-
Uses of TypeParameter in com.github.javaparser
Fields in com.github.javaparser with type parameters of type TypeParameter Modifier and Type Field Description static ParseStart<TypeParameter>
ParseStart. TYPE_PARAMETER
Methods in com.github.javaparser that return TypeParameter Modifier and Type Method Description TypeParameter
JavaParserAdapter. parseTypeParameter(String typeParameter)
static TypeParameter
StaticJavaParser. parseTypeParameter(String typeParameter)
Parses a type parameter and returns it as a TypeParameterMethods in com.github.javaparser that return types with arguments of type TypeParameter Modifier and Type Method Description ParseResult<TypeParameter>
JavaParser. parseTypeParameter(String typeParameter)
Parses a type parameter and returns it as a TypeParameter -
Uses of TypeParameter in com.github.javaparser.ast.body
Methods in com.github.javaparser.ast.body that return types with arguments of type TypeParameter Modifier and Type Method Description NodeList<TypeParameter>
CallableDeclaration. getTypeParameters()
NodeList<TypeParameter>
ClassOrInterfaceDeclaration. getTypeParameters()
NodeList<TypeParameter>
CompactConstructorDeclaration. getTypeParameters()
NodeList<TypeParameter>
RecordDeclaration. getTypeParameters()
Method parameters in com.github.javaparser.ast.body with type arguments of type TypeParameter Modifier and Type Method Description T
CallableDeclaration. setTypeParameters(NodeList<TypeParameter> typeParameters)
ClassOrInterfaceDeclaration
ClassOrInterfaceDeclaration. setTypeParameters(NodeList<TypeParameter> typeParameters)
CompactConstructorDeclaration
CompactConstructorDeclaration. setTypeParameters(NodeList<TypeParameter> typeParameters)
ConstructorDeclaration
ConstructorDeclaration. setTypeParameters(NodeList<TypeParameter> typeParameters)
MethodDeclaration
MethodDeclaration. setTypeParameters(NodeList<TypeParameter> typeParameters)
RecordDeclaration
RecordDeclaration. setTypeParameters(NodeList<TypeParameter> typeParameters)
-
Uses of TypeParameter in com.github.javaparser.ast.nodeTypes
Methods in com.github.javaparser.ast.nodeTypes that return TypeParameter Modifier and Type Method Description default TypeParameter
NodeWithTypeParameters. getTypeParameter(int i)
Methods in com.github.javaparser.ast.nodeTypes that return types with arguments of type TypeParameter Modifier and Type Method Description NodeList<TypeParameter>
NodeWithTypeParameters. getTypeParameters()
Methods in com.github.javaparser.ast.nodeTypes with parameters of type TypeParameter Modifier and Type Method Description default N
NodeWithTypeParameters. addTypeParameter(TypeParameter typeParameter)
default N
NodeWithTypeParameters. setTypeParameter(int i, TypeParameter typeParameter)
Method parameters in com.github.javaparser.ast.nodeTypes with type arguments of type TypeParameter Modifier and Type Method Description N
NodeWithTypeParameters. setTypeParameters(NodeList<TypeParameter> typeParameters)
-
Uses of TypeParameter in com.github.javaparser.ast.type
Methods in com.github.javaparser.ast.type that return TypeParameter Modifier and Type Method Description TypeParameter
Type. asTypeParameter()
TypeParameter
TypeParameter. asTypeParameter()
TypeParameter
TypeParameter. clone()
TypeParameter
TypeParameter. setAnnotations(NodeList<AnnotationExpr> annotations)
TypeParameter
TypeParameter. setName(SimpleName name)
TypeParameter
TypeParameter. setTypeBound(NodeList<ClassOrInterfaceType> typeBound)
Methods in com.github.javaparser.ast.type that return types with arguments of type TypeParameter Modifier and Type Method Description Optional<TypeParameter>
Type. toTypeParameter()
Optional<TypeParameter>
TypeParameter. toTypeParameter()
Method parameters in com.github.javaparser.ast.type with type arguments of type TypeParameter Modifier and Type Method Description void
Type. ifTypeParameter(Consumer<TypeParameter> action)
void
TypeParameter. ifTypeParameter(Consumer<TypeParameter> action)
-
Uses of TypeParameter in com.github.javaparser.ast.visitor
Methods in com.github.javaparser.ast.visitor with parameters of type TypeParameter Modifier and Type Method Description Visitable
CloneVisitor. visit(TypeParameter n, Object arg)
Boolean
EqualsVisitor. visit(TypeParameter n, Visitable arg)
List<R>
GenericListVisitorAdapter. visit(TypeParameter n, A arg)
R
GenericVisitor. visit(TypeParameter n, A arg)
R
GenericVisitorAdapter. visit(TypeParameter n, A arg)
R
GenericVisitorWithDefaults. visit(TypeParameter n, A arg)
Integer
HashCodeVisitor. visit(TypeParameter n, Void arg)
Visitable
ModifierVisitor. visit(TypeParameter n, A arg)
Boolean
NoCommentEqualsVisitor. visit(TypeParameter n, Visitable arg)
Integer
NoCommentHashCodeVisitor. visit(TypeParameter n, Void arg)
Boolean
ObjectIdentityEqualsVisitor. visit(TypeParameter n, Visitable arg)
Integer
ObjectIdentityHashCodeVisitor. visit(TypeParameter n, Void arg)
void
VoidVisitor. visit(TypeParameter n, A arg)
void
VoidVisitorAdapter. visit(TypeParameter n, A arg)
void
VoidVisitorWithDefaults. visit(TypeParameter n, A arg)
-
Uses of TypeParameter in com.github.javaparser.printer
Methods in com.github.javaparser.printer with parameters of type TypeParameter Modifier and Type Method Description void
DefaultPrettyPrinterVisitor. visit(TypeParameter n, Void arg)
void
PrettyPrintVisitor. visit(TypeParameter n, Void arg)
Deprecated.Method parameters in com.github.javaparser.printer with type arguments of type TypeParameter Modifier and Type Method Description protected void
DefaultPrettyPrinterVisitor. printTypeParameters(NodeList<TypeParameter> args, Void arg)
protected void
PrettyPrintVisitor. printTypeParameters(NodeList<TypeParameter> args, Void arg)
Deprecated. -
Uses of TypeParameter in com.github.javaparser.symbolsolver.javaparsermodel
Methods in com.github.javaparser.symbolsolver.javaparsermodel with parameters of type TypeParameter Modifier and Type Method Description ResolvedType
DefaultVisitorAdapter. visit(TypeParameter node, Boolean aBoolean)
-
Uses of TypeParameter in com.github.javaparser.symbolsolver.javaparsermodel.declarations
Methods in com.github.javaparser.symbolsolver.javaparsermodel.declarations that return TypeParameter Modifier and Type Method Description TypeParameter
JavaParserTypeParameter. getWrappedNode()
Returns the JavaParser node associated with this JavaParserTypeParameter.TypeParameter
JavaParserTypeVariableDeclaration. getWrappedNode()
Returns the JavaParser node associated with this JavaParserTypeVariableDeclaration.Constructors in com.github.javaparser.symbolsolver.javaparsermodel.declarations with parameters of type TypeParameter Constructor Description JavaParserTypeParameter(TypeParameter wrappedNode, TypeSolver typeSolver)
JavaParserTypeVariableDeclaration(TypeParameter wrappedNode, TypeSolver typeSolver)
-