Uses of Class
com.github.javaparser.ast.type.TypeParameter
-
Packages that use TypeParameter Package Description com.github.javaparser.ast.body com.github.javaparser.ast.nodeTypes com.github.javaparser.ast.type com.github.javaparser.ast.visitor com.github.javaparser.printer -
-
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()
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)
ConstructorDeclaration
ConstructorDeclaration. setTypeParameters(NodeList<TypeParameter> typeParameters)
MethodDeclaration
MethodDeclaration. 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
TypeParameter. clone()
TypeParameter
TypeParameter. setAnnotations(NodeList<AnnotationExpr> annotations)
TypeParameter
TypeParameter. setName(SimpleName name)
TypeParameter
TypeParameter. setTypeBound(NodeList<ClassOrInterfaceType> typeBound)
-
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)
Integer
HashCodeVisitor. visit(TypeParameter n, Void arg)
Visitable
ModifierVisitor. visit(TypeParameter n, A 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)
-
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
PrettyPrintVisitor. visit(TypeParameter n, Void arg)
-