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

commonMain.pro.felixo.protobuf.EnumValue.kt Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package pro.felixo.protobuf

/**
 * Represents a Protobuf enum value, consisting of a name and a number.
 */
data class EnumValue(
    val name: Identifier,
    val number: Int
) : Comparable {
    override fun compareTo(other: EnumValue): Int = number.compareTo(other.number)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy