dev.datlag.sekret.model.JavaSignatureValues.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler-plugin Show documentation
Show all versions of compiler-plugin Show documentation
Compiler plugin for sekret annotations
The newest version!
package dev.datlag.sekret.model
import org.jetbrains.kotlin.ir.types.getPublicSignature
object JavaSignatureValues {
@JvmField val string = getPublicSignature(JavaStandardNames.LANG_PACKAGE_FQ_NAME, "String")
@JvmField val charSequence = getPublicSignature(JavaStandardNames.LANG_PACKAGE_FQ_NAME, "CharSequence")
@JvmField val stringBuilder = getPublicSignature(JavaStandardNames.LANG_PACKAGE_FQ_NAME, "StringBuilder")
@JvmField val appendable = getPublicSignature(JavaStandardNames.LANG_PACKAGE_FQ_NAME, "Appendable")
@JvmField val stringBuffer = getPublicSignature(JavaStandardNames.LANG_PACKAGE_FQ_NAME, "StringBuffer")
}