Package-level declarations

Types

Link copied to clipboard
data class EnumValue(val name: Identifier, val number: Int) : Comparable<EnumValue>

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

Link copied to clipboard
value class FieldNumber(val value: Int) : Comparable<FieldNumber>

Represents a Protobuf field number, which is an integer in one of the intervals [1,19000) and 20000,536870911.

Link copied to clipboard

Represents a Protobuf field rule:

Link copied to clipboard
value class Identifier(val value: String) : Comparable<Identifier>

Represents a protobuf identifier, which is a string consisting of letters, numbers, and underscores, starting with a letter or underscore.