commonMain.pro.felixo.protobuf.EnumValue.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protobuf-kotlin-common Show documentation
Show all versions of protobuf-kotlin-common Show documentation
Protocol Buffers 3 support for Kotlin Multiplatform
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