Package com.google.devtools.ksp.symbol
Interface KSName
-
- All Implemented Interfaces:
public interface KSNameKotlin Symbol Processing's representation of names. Can be simple or qualified names.
-
-
Method Summary
Modifier and Type Method Description abstract StringasString()String representation of the name. abstract StringgetQualifier()Qualifier of the name. abstract StringgetShortName()If a qualified name, it is the last part. -
-
Method Detail
-
getQualifier
abstract String getQualifier()
Qualifier of the name.
-
getShortName
abstract String getShortName()
If a qualified name, it is the last part. Otherwise it is the same as asString
-
-
-
-