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

com.pubnub.internal.crypto.cryptor.CryptorHeaderVersion.kt Maven / Gradle / Ivy

package com.pubnub.internal.crypto.cryptor

internal enum class CryptorHeaderVersion(val value: Int) {
    One(1),
    ;

    companion object {
        fun fromValue(value: Int): CryptorHeaderVersion? {
            return values().find { it.value == value }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy