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
(ClassRefTypeSignature
orTypeVariableSignature
), andArrayTypeSignature
.
-
-
Field Summary
Fields Modifier and Type Field Description protected ScanResult
scanResult
The scan result.
-
Constructor Summary
Constructors Modifier Constructor Description protected
ReferenceTypeSignature()
Constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description protected abstract java.lang.String
getClassName()
The name of the class (used bygetClassInfo()
to fetch theClassInfo
object for the class).-
Methods inherited from class io.github.classgraph.TypeSignature
equalsIgnoringTypeParams, toString, toStringInternal, toStringWithSimpleNames
-
-
-
-
Field Detail
-
scanResult
protected transient ScanResult scanResult
The scan result.
-
-
Method Detail
-
getClassName
protected abstract java.lang.String getClassName()
The name of the class (used bygetClassInfo()
to fetch theClassInfo
object for the class).- Returns:
- The class name.
-
-