Package io.github.classgraph
Class ReferenceTypeSignature
- java.lang.Object
-
- io.github.classgraph.HierarchicalTypeSignature
-
- io.github.classgraph.TypeSignature
-
- io.github.classgraph.ReferenceTypeSignature
-
- Direct Known Subclasses:
ArrayTypeSignature,ClassRefOrTypeVariableSignature
public abstract class ReferenceTypeSignature extends TypeSignature
A type signature for a reference type. Subclasses areClassRefOrTypeVariableSignature(ClassRefTypeSignatureorTypeVariableSignature), andArrayTypeSignature.
-
-
Field Summary
Fields Modifier and Type Field Description protected ScanResultscanResult
-
Constructor Summary
Constructors Constructor Description ReferenceTypeSignature()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description protected abstract StringgetClassName()The name of the class (used bygetClassInfo()to fetch theClassInfoobject for the class).-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from class io.github.classgraph.TypeSignature
equalsIgnoringTypeParams
-
-
-
-
Field Detail
-
scanResult
protected transient ScanResult scanResult
-
-
Method Detail
-
getClassName
protected abstract String getClassName()
The name of the class (used bygetClassInfo()to fetch theClassInfoobject for the class).- Returns:
- The class name.
-
-