public interface RiceDeltaEncodingOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
com.google.protobuf.ByteString |
getEncodedData()
The encoded deltas that are encoded using the Golomb-Rice coder.
|
int |
getEntryCount()
The number of entries that are delta encoded in the encoded data.
|
long |
getFirstValue()
The offset of the first entry in the encoded data, or, if only a single
integer was encoded, that single integer's value.
|
int |
getRiceParameter()
The Golomb-Rice parameter, which is a number between 2 and 28.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneoflong getFirstValue()
The offset of the first entry in the encoded data, or, if only a single integer was encoded, that single integer's value. If the field is empty or missing, assume zero.
int64 first_value = 1;int getRiceParameter()
The Golomb-Rice parameter, which is a number between 2 and 28. This field is missing (that is, zero) if `num_entries` is zero.
int32 rice_parameter = 2;int getEntryCount()
The number of entries that are delta encoded in the encoded data. If only a single integer was encoded, this will be zero and the single value will be stored in `first_value`.
int32 entry_count = 3;com.google.protobuf.ByteString getEncodedData()
The encoded deltas that are encoded using the Golomb-Rice coder.
bytes encoded_data = 4;Copyright © 2019 Google LLC. All rights reserved.