Uses of Class
io.github.classgraph.ReferenceTypeSignature
-
Packages that use ReferenceTypeSignature Package Description io.github.classgraph -
-
Uses of ReferenceTypeSignature in io.github.classgraph
Subclasses of ReferenceTypeSignature in io.github.classgraph Modifier and Type Class Description class
ArrayTypeSignature
An array type signature.class
ClassRefOrTypeVariableSignature
A class type or type variable.class
ClassRefTypeSignature
A class reference type signature (called "ClassTypeSignature" in the classfile documentation).class
TypeVariableSignature
A type variable signature.Fields in io.github.classgraph declared as ReferenceTypeSignature Modifier and Type Field Description (package private) ReferenceTypeSignature
TypeParameter. classBound
Class bound -- may be null.private ReferenceTypeSignature
TypeArgument. typeSignature
Type signature (will be null if wildcard == ANY).Fields in io.github.classgraph with type parameters of type ReferenceTypeSignature Modifier and Type Field Description (package private) java.util.List<ReferenceTypeSignature>
TypeParameter. interfaceBounds
Interface bounds -- may be empty.Methods in io.github.classgraph that return ReferenceTypeSignature Modifier and Type Method Description ReferenceTypeSignature
TypeParameter. getClassBound()
Get the type parameter class bound.ReferenceTypeSignature
TypeArgument. getTypeSignature()
Get the type signature associated with the wildcard (or null, if the wildcard is ANY).(package private) static ReferenceTypeSignature
ReferenceTypeSignature. parseClassBound(Parser parser, java.lang.String definingClassName)
Parse a class bound.(package private) static ReferenceTypeSignature
ReferenceTypeSignature. parseReferenceTypeSignature(Parser parser, java.lang.String definingClassName)
Parse a reference type signature.Methods in io.github.classgraph that return types with arguments of type ReferenceTypeSignature Modifier and Type Method Description java.util.List<ReferenceTypeSignature>
TypeParameter. getInterfaceBounds()
Get the type parameter interface bound(s).Constructors in io.github.classgraph with parameters of type ReferenceTypeSignature Constructor Description TypeArgument(TypeArgument.Wildcard wildcard, ReferenceTypeSignature typeSignature)
Constructor.TypeParameter(java.lang.String identifier, ReferenceTypeSignature classBound, java.util.List<ReferenceTypeSignature> interfaceBounds)
Constructor.Constructor parameters in io.github.classgraph with type arguments of type ReferenceTypeSignature Constructor Description TypeParameter(java.lang.String identifier, ReferenceTypeSignature classBound, java.util.List<ReferenceTypeSignature> interfaceBounds)
Constructor.
-