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

com.testerum.common_profiles.TesterumProfile.kt Maven / Gradle / Ivy

package com.testerum.common_profiles

enum class TesterumProfile {

    DEV,
    PROD,
    ;

    companion object {
        val DEFAULT: TesterumProfile = PROD

        fun safeValueOf(value: String): TesterumProfile? {
            return try {
                valueOf(value)
            } catch (e: IllegalArgumentException) {
                null
            }
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy