jvmMain.compiler.KotlinJvmTarget.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluid-compiler-jvm Show documentation
Show all versions of fluid-compiler-jvm Show documentation
Compile Kotlin code and run Kapt annotation processing directly from Kotlin
package io.fluidsonic.compiler
@Suppress("EnumEntryName")
public enum class KotlinJvmTarget(internal val string: String) {
v1_6("1.6"),
v1_8("1.8"),
v9("9"),
v10("10"),
v11("11"),
v12("12"),
v13("13"),
v14("14"),
v15("15"),
v16("16"),
v17("17"),
;
override fun toString(): String = string
}