com.pulumi.azurenative.voiceservices.kotlin.enums.TestLinePurpose.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.voiceservices.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Purpose of this test line, e.g. automated or manual testing
*/
public enum class TestLinePurpose(
public val javaValue: com.pulumi.azurenative.voiceservices.enums.TestLinePurpose,
) : ConvertibleToJava {
Manual(com.pulumi.azurenative.voiceservices.enums.TestLinePurpose.Manual),
Automated(com.pulumi.azurenative.voiceservices.enums.TestLinePurpose.Automated),
;
override fun toJava(): com.pulumi.azurenative.voiceservices.enums.TestLinePurpose = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.voiceservices.enums.TestLinePurpose): TestLinePurpose = TestLinePurpose.values().first { it.javaValue == javaType }
}
}