Package com.github.javaparser.ast.type
Class TypeParameter
- java.lang.Object
-
- com.github.javaparser.ast.Node
-
- com.github.javaparser.ast.type.Type
-
- com.github.javaparser.ast.type.ReferenceType
-
- com.github.javaparser.ast.type.TypeParameter
-
- All Implemented Interfaces:
NodeWithAnnotations<TypeParameter>,NodeWithRange<Node>,NodeWithSimpleName<TypeParameter>,NodeWithTokenRange<Node>,Observable,ConvertibleToUsage,Visitable,HasParentNode<Node>,Resolvable<ResolvedType>,java.lang.Cloneable
public class TypeParameter extends ReferenceType implements NodeWithSimpleName<TypeParameter>, NodeWithAnnotations<TypeParameter>
A type parameter. Examples:<U> U getU() { ... }class D <@Brain T extends B & A & @Tripe C> { ... }U and T are type parameter names.
B, A, and C are type parameter bounds.
Tripe is an annotation on type parameter bound C.
Brain is an annotation on type parameter T.- See Also:
NodeWithTypeParameters
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.github.javaparser.ast.Node
Node.BreadthFirstIterator, Node.DirectChildrenIterator, Node.ObserverRegistrationMode, Node.ParentsVisitor, Node.Parsedness, Node.PostOrderIterator, Node.PreOrderIterator, Node.TreeTraversal
-
-
Field Summary
Fields Modifier and Type Field Description private SimpleNamenameprivate NodeList<ClassOrInterfaceType>typeBound-
Fields inherited from class com.github.javaparser.ast.Node
ABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, LINE_SEPARATOR_KEY, NODE_BY_BEGIN_POSITION, PHANTOM_KEY, prettyPrinterNoCommentsConfiguration, PRINTER_KEY, SYMBOL_RESOLVER_KEY
-
-
Constructor Summary
Constructors Constructor Description TypeParameter()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(java.lang.String name)TypeParameter(java.lang.String name, NodeList<ClassOrInterfaceType> typeBound)
-
Method Summary
-
Methods inherited from class com.github.javaparser.ast.type.ReferenceType
asReferenceType, ifReferenceType, isReferenceType, toReferenceType
-
Methods inherited from class com.github.javaparser.ast.type.Type
asArrayType, asClassOrInterfaceType, asIntersectionType, asPrimitiveType, asUnionType, asUnknownType, asVarType, asVoidType, asWildcardType, getAnnotation, getAnnotations, getArrayLevel, getElementType, ifArrayType, ifClassOrInterfaceType, ifIntersectionType, ifPrimitiveType, ifUnionType, ifUnknownType, ifVarType, ifVoidType, ifWildcardType, isArrayType, isClassOrInterfaceType, isIntersectionType, isPrimitiveType, isUnionType, isUnknownType, isVarType, isVoidType, isWildcardType, toArrayType, toClassOrInterfaceType, toIntersectionType, toPrimitiveType, toUnionType, toUnknownType, toVarType, toVoidType, toWildcardType
-
Methods inherited from class com.github.javaparser.ast.Node
addOrphanComment, containsData, createDefaultPrinter, createDefaultPrinter, customInitialization, equals, findAll, findAll, findAll, findByRange, findCompilationUnit, findData, findFirst, findFirst, findFirst, findRootNode, getAllContainedComments, getChildNodes, getChildNodesByType, getComment, getData, getDataKeys, getDefaultPrinterConfiguration, getLineEndingStyle, getLineEndingStyleOrDefault, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getParsed, getPrinter, getPrinter, getRange, getSymbolResolver, getTokenRange, hashCode, hasScope, isAncestorOf, isPhantom, isRegistered, notifyPropertyChange, register, register, registerForSubtree, remove, removeComment, removeData, removeForced, removeOrphanComment, replace, setAsParentNodeOf, setAsParentNodeOf, setBlockComment, setComment, setData, setLineComment, setParentNode, setParsed, setRange, setTokenRange, stream, stream, toString, toString, tryAddImportToParentCompilationUnit, unregister, walk, walk, walk
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.github.javaparser.HasParentNode
findAncestor, findAncestor, findAncestor, hasParentNode, isDescendantOf
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithAnnotations
addAndGetAnnotation, addAndGetAnnotation, addAnnotation, addAnnotation, addAnnotation, addMarkerAnnotation, addMarkerAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, getAnnotation, getAnnotationByClass, getAnnotationByName, getAnnotations, isAnnotationPresent, isAnnotationPresent, setAnnotation, tryAddImportToParentCompilationUnit
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithRange
containsWithin, containsWithinRange, getBegin, getEnd, hasRange
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithSimpleName
getNameAsExpression, getNameAsString, setName
-
-
-
-
Field Detail
-
name
private SimpleName name
-
typeBound
private NodeList<ClassOrInterfaceType> typeBound
-
-
Constructor Detail
-
TypeParameter
public TypeParameter()
-
TypeParameter
public TypeParameter(java.lang.String name)
-
TypeParameter
public TypeParameter(java.lang.String name, NodeList<ClassOrInterfaceType> typeBound)
-
TypeParameter
public TypeParameter(SimpleName name, NodeList<ClassOrInterfaceType> typeBound, NodeList<AnnotationExpr> annotations)
-
TypeParameter
public TypeParameter(TokenRange tokenRange, SimpleName name, NodeList<ClassOrInterfaceType> typeBound, NodeList<AnnotationExpr> annotations)
This constructor is used by the parser and is considered private.
-
-
Method Detail
-
accept
public <R,A> R accept(GenericVisitor<R,A> v, A arg)
Description copied from interface:VisitableAccept method for visitor support.- Specified by:
acceptin interfaceVisitable- Type Parameters:
R- the type of the return value of the visitorA- the type the user argument passed to the visitor- Parameters:
v- the visitor implementationarg- the argument passed to the visitor (of type A)- Returns:
- the result of the visit (of type R)
-
accept
public <A> void accept(VoidVisitor<A> v, A arg)
Description copied from interface:VisitableAccept method for visitor support.
-
getName
public SimpleName getName()
Return the name of the paramenter.- Specified by:
getNamein interfaceNodeWithSimpleName<TypeParameter>- Returns:
- the name of the paramenter
-
getTypeBound
public NodeList<ClassOrInterfaceType> getTypeBound()
Return the list ofClassOrInterfaceTypethat this parameter extends. Returnnullnull if there are no type.- Returns:
- list of types that this paramente extends or
null
-
setName
public TypeParameter setName(SimpleName name)
- Specified by:
setNamein interfaceNodeWithSimpleName<TypeParameter>
-
setTypeBound
public TypeParameter setTypeBound(NodeList<ClassOrInterfaceType> typeBound)
-
setAnnotations
public TypeParameter setAnnotations(NodeList<AnnotationExpr> annotations)
- Specified by:
setAnnotationsin interfaceNodeWithAnnotations<TypeParameter>- Overrides:
setAnnotationsin classType
-
toDescriptor
public java.lang.String toDescriptor()
- Specified by:
toDescriptorin classReferenceType
-
clone
public TypeParameter clone()
- Overrides:
clonein classReferenceType
-
getMetaModel
public TypeParameterMetaModel getMetaModel()
- Overrides:
getMetaModelin classReferenceType- Returns:
- get JavaParser specific node introspection information.
-
isTypeParameter
public boolean isTypeParameter()
- Overrides:
isTypeParameterin classType
-
asTypeParameter
public TypeParameter asTypeParameter()
- Overrides:
asTypeParameterin classType
-
ifTypeParameter
public void ifTypeParameter(java.util.function.Consumer<TypeParameter> action)
- Overrides:
ifTypeParameterin classType
-
resolve
public ResolvedTypeVariable resolve()
- Specified by:
resolvein interfaceResolvable<ResolvedType>- Specified by:
resolvein classType
-
toTypeParameter
public java.util.Optional<TypeParameter> toTypeParameter()
- Overrides:
toTypeParameterin classType
-
convertToUsage
public ResolvedType convertToUsage(Context context)
- Specified by:
convertToUsagein interfaceConvertibleToUsage
-
-