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

ru.astrainteractive.astralibs.encoding.model.EncodedObject.kt Maven / Gradle / Ivy

There is a newer version: 3.12.2
Show newest version
package ru.astrainteractive.astralibs.encoding.model

/**
 * Wrapper for IO classes to handle [Encoder] more safely
 */
sealed interface EncodedObject {
    @JvmInline
    value class Base64(val value: String) : EncodedObject

    @JvmInline
    value class ByteArray(val value: kotlin.ByteArray) : EncodedObject
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy