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(java.lang.String typeParameter)
static TypeParameter
StaticJavaParser. parseTypeParameter(java.lang.String typeParameter)
Parses a type parameter and returns it as a TypeParameterTypeParameter
GeneratedJavaParser. TypeParameter(NodeList<AnnotationExpr> annotations)
Note that theTypeParameterModifier
is defined as anAnnotation
.TypeParameter
GeneratedJavaParser. TypeParameterParseStart()
Methods in com.github.javaparser that return types with arguments of type TypeParameter Modifier and Type Method Description ParseResult<TypeParameter>
JavaParser. parseTypeParameter(java.lang.String typeParameter)
Parses a type parameter and returns it as a TypeParameterRangedList<TypeParameter>
GeneratedJavaParser. TypeParameters()
If the list inside the returned RangedList is null, there are no brackets. -
Uses of TypeParameter in com.github.javaparser.ast.body
Fields in com.github.javaparser.ast.body with type parameters of type TypeParameter Modifier and Type Field Description private NodeList<TypeParameter>
CallableDeclaration. typeParameters
private NodeList<TypeParameter>
ClassOrInterfaceDeclaration. typeParameters
private NodeList<TypeParameter>
CompactConstructorDeclaration. typeParameters
private NodeList<TypeParameter>
RecordDeclaration. typeParameters
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 java.util.Optional<TypeParameter>
Type. toTypeParameter()
java.util.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(java.util.function.Consumer<TypeParameter> action)
void
TypeParameter. ifTypeParameter(java.util.function.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, java.lang.Object arg)
java.lang.Boolean
EqualsVisitor. visit(TypeParameter n, Visitable arg)
java.util.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)
java.lang.Integer
HashCodeVisitor. visit(TypeParameter n, java.lang.Void arg)
Visitable
ModifierVisitor. visit(TypeParameter n, A arg)
java.lang.Boolean
NoCommentEqualsVisitor. visit(TypeParameter n, Visitable arg)
java.lang.Integer
NoCommentHashCodeVisitor. visit(TypeParameter n, java.lang.Void arg)
void
NodeFinderVisitor. visit(TypeParameter n, Range arg)
java.lang.Boolean
ObjectIdentityEqualsVisitor. visit(TypeParameter n, Visitable arg)
java.lang.Integer
ObjectIdentityHashCodeVisitor. visit(TypeParameter n, java.lang.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, java.lang.Void arg)
void
PrettyPrintVisitor. visit(TypeParameter n, java.lang.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, java.lang.Void arg)
protected void
PrettyPrintVisitor. printTypeParameters(NodeList<TypeParameter> args, java.lang.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, java.lang.Boolean aBoolean)
-
Uses of TypeParameter in com.github.javaparser.symbolsolver.javaparsermodel.declarations
Fields in com.github.javaparser.symbolsolver.javaparsermodel.declarations declared as TypeParameter Modifier and Type Field Description private TypeParameter
JavaParserTypeParameter. wrappedNode
private TypeParameter
JavaParserTypeVariableDeclaration. wrappedNode
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)
-