ProtoIntegerType

enum ProtoIntegerType : Enum<ProtoIntegerType>

Represents a number format in protobuf encoding.

DEFAULT is default varint encoding (intXX), SIGNED is signed ZigZag representation (sintXX), and FIXED is fixedXX type. uintXX and sfixedXX are not supported yet.

See https://developers.google.com/protocol-buffers/docs/proto#scalar

See also

Entries

FIXED
Link copied to clipboard
FIXED(2L shl 32)
SIGNED
Link copied to clipboard
SIGNED(1L shl 32)
DEFAULT
Link copied to clipboard
DEFAULT(0L shl 32)

Properties

name
Link copied to clipboard
val name: String
ordinal
Link copied to clipboard
val ordinal: Int