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

com.pulumi.azurenative.network.kotlin.enums.State.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.network.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * The state of the Experiment
 */
public enum class State(
    public val javaValue: com.pulumi.azurenative.network.enums.State,
) : ConvertibleToJava {
    Enabled(com.pulumi.azurenative.network.enums.State.Enabled),
    Disabled(com.pulumi.azurenative.network.enums.State.Disabled),
    ;

    override fun toJava(): com.pulumi.azurenative.network.enums.State = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.network.enums.State): State =
            State.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy