EnumValue

data class EnumValue(val name: Identifier, val number: Int) : Comparable<EnumValue>

Represents a Protobuf enum value, consisting of a name and a number.

Constructors

Link copied to clipboard
constructor(name: Identifier, number: Int)

Properties

Link copied to clipboard
Link copied to clipboard
val number: Int

Functions

Link copied to clipboard
open operator override fun compareTo(other: EnumValue): Int