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 classArrayTypeSignatureAn array type signature.classClassRefOrTypeVariableSignatureA class type or type variable.classClassRefTypeSignatureA class reference type signature (called "ClassTypeSignature" in the classfile documentation).classTypeVariableSignatureA type variable signature.Fields in io.github.classgraph declared as ReferenceTypeSignature Modifier and Type Field Description (package private) ReferenceTypeSignatureTypeParameter. classBoundClass bound -- may be null.private ReferenceTypeSignatureTypeArgument. typeSignatureType 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. interfaceBoundsInterface bounds -- may be empty.Methods in io.github.classgraph that return ReferenceTypeSignature Modifier and Type Method Description ReferenceTypeSignatureTypeParameter. getClassBound()Get the type parameter class bound.ReferenceTypeSignatureTypeArgument. getTypeSignature()Get the type signature associated with the wildcard (or null, if the wildcard is ANY).(package private) static ReferenceTypeSignatureReferenceTypeSignature. parseClassBound(Parser parser, java.lang.String definingClassName)Parse a class bound.(package private) static ReferenceTypeSignatureReferenceTypeSignature. 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.
-