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
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
Render to string.String
toStringWithSimpleNames()
Render to string, using only simple names for classes.-
Methods inherited from class io.github.classgraph.TypeSignature
equalsIgnoringTypeParams, getTypeAnnotationInfo
-
-
-
-
Method Detail
-
toStringWithSimpleNames
public String toStringWithSimpleNames()
Render to string, using only simple names for classes.- Returns:
- the string representation, using simple names for classes.
-
-