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,Visitable,HasParentNode<Node>,Resolvable<ResolvedType>,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.
- Author:
- Julio Vilmar Gesser
- 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 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
ConstructorsConstructorDescriptionTypeParameter(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)TypeParameter(String name, NodeList<ClassOrInterfaceType> typeBound) -
Method Summary
Modifier and TypeMethodDescription<R, A> Raccept(GenericVisitor<R,A> v, A arg)Accept method for visitor support.<A> voidaccept(VoidVisitor<A> v, A arg)Accept method for visitor support.asString()clone()getName()Return the name of the paramenter.Return the list ofClassOrInterfaceTypethat this parameter extends.voidifTypeParameter(Consumer<TypeParameter> action)booleanbooleanbooleanresolve()setAnnotations(NodeList<AnnotationExpr> annotations)setName(SimpleName name)setTypeBound(NodeList<ClassOrInterfaceType> typeBound)Methods inherited from class com.github.javaparser.ast.type.ReferenceType
asReferenceType, ifReferenceType, isReferenceType, toReferenceTypeMethods 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, toWildcardTypeMethods inherited from class com.github.javaparser.ast.Node
addOrphanComment, containsData, createDefaultPrinter, createDefaultPrinter, customInitialization, equals, findAll, findAll, findAll, findCompilationUnit, 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, walkMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.github.javaparser.HasParentNode
findAncestor, findAncestor, findAncestor, hasParentNode, isDescendantOfMethods 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, tryAddImportToParentCompilationUnitMethods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithRange
containsWithin, containsWithinRange, getBegin, getEnd, hasRangeMethods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithSimpleName
getNameAsExpression, getNameAsString, setName
-
Constructor Details
-
TypeParameter
public TypeParameter() -
TypeParameter
-
TypeParameter
-
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 Details
-
accept
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
Description copied from interface:VisitableAccept method for visitor support. -
getName
Return the name of the paramenter.- Specified by:
getNamein interfaceNodeWithSimpleName<TypeParameter>- Returns:
- the name of the paramenter
-
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
- Specified by:
setNamein interfaceNodeWithSimpleName<TypeParameter>
-
setTypeBound
-
setAnnotations
- Specified by:
setAnnotationsin interfaceNodeWithAnnotations<TypeParameter>- Overrides:
setAnnotationsin classType
-
remove
-
asString
-
toDescriptor
- Specified by:
toDescriptorin classReferenceType
-
clone
- Overrides:
clonein classReferenceType
-
getMetaModel
- Overrides:
getMetaModelin classReferenceType- Returns:
- get JavaParser specific node introspection information.
-
replace
-
isTypeParameter
public boolean isTypeParameter()- Overrides:
isTypeParameterin classType
-
asTypeParameter
- Overrides:
asTypeParameterin classType
-
ifTypeParameter
- Overrides:
ifTypeParameterin classType
-
resolve
- Specified by:
resolvein interfaceResolvable<ResolvedType>- Specified by:
resolvein classType
-
toTypeParameter
- Overrides:
toTypeParameterin classType
-