All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.compiler.KotlinJvmTarget.kt Maven / Gradle / Ivy

There is a newer version: 0.13.0
Show newest version
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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy