-
- All Implemented Interfaces:
-
com.google.devtools.ksp.symbol.KSAnnotated,com.google.devtools.ksp.symbol.KSModifierListOwner,com.google.devtools.ksp.symbol.KSNode
public interface KSTypeReference implements KSAnnotated, KSModifierListOwner
A KSTypeReference combines a KSReferenceElement with annotations and modifiers.
-
-
Method Summary
Modifier and Type Method Description abstract KSTyperesolve()Resolves to the original declaration site. abstract KSReferenceElementgetElement()Underlying element of this type reference, without annotations and modifiers. -
Methods inherited from class com.google.devtools.ksp.symbol.KSNode
accept, getLocation, getOrigin, getParent -
Methods inherited from class com.google.devtools.ksp.symbol.KSAnnotated
getAnnotations -
Methods inherited from class com.google.devtools.ksp.symbol.KSModifierListOwner
getModifiers -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getElement
abstract KSReferenceElement getElement()
Underlying element of this type reference, without annotations and modifiers.
-
-
-
-