com.google.bigtable.v2.ReadRowsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-bigtable-v2 Show documentation
Show all versions of proto-google-cloud-bigtable-v2 Show documentation
PROTO library for proto-google-cloud-bigtable-v2
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/bigtable/v2/bigtable.proto
// Protobuf Java Version: 3.25.4
package com.google.bigtable.v2;
/**
*
*
*
* Response message for Bigtable.ReadRows.
*
*
* Protobuf type {@code google.bigtable.v2.ReadRowsResponse}
*/
public final class ReadRowsResponse extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.bigtable.v2.ReadRowsResponse)
ReadRowsResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use ReadRowsResponse.newBuilder() to construct.
private ReadRowsResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ReadRowsResponse() {
chunks_ = java.util.Collections.emptyList();
lastScannedRowKey_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new ReadRowsResponse();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_ReadRowsResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_ReadRowsResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.bigtable.v2.ReadRowsResponse.class,
com.google.bigtable.v2.ReadRowsResponse.Builder.class);
}
public interface CellChunkOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.bigtable.v2.ReadRowsResponse.CellChunk)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The row key for this chunk of data. If the row key is empty,
* this CellChunk is a continuation of the same row as the previous
* CellChunk in the response stream, even if that CellChunk was in a
* previous ReadRowsResponse message.
*
*
* bytes row_key = 1;
*
* @return The rowKey.
*/
com.google.protobuf.ByteString getRowKey();
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*
* @return Whether the familyName field is set.
*/
boolean hasFamilyName();
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*
* @return The familyName.
*/
com.google.protobuf.StringValue getFamilyName();
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*/
com.google.protobuf.StringValueOrBuilder getFamilyNameOrBuilder();
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*
* @return Whether the qualifier field is set.
*/
boolean hasQualifier();
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*
* @return The qualifier.
*/
com.google.protobuf.BytesValue getQualifier();
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*/
com.google.protobuf.BytesValueOrBuilder getQualifierOrBuilder();
/**
*
*
*
* The cell's stored timestamp, which also uniquely identifies it
* within its column. Values are always expressed in
* microseconds, but individual tables may set a coarser
* granularity to further restrict the allowed values. For
* example, a table which specifies millisecond granularity will
* only allow values of `timestamp_micros` which are multiples of
* 1000. Timestamps are only set in the first CellChunk per cell
* (for cells split into multiple chunks).
*
*
* int64 timestamp_micros = 4;
*
* @return The timestampMicros.
*/
long getTimestampMicros();
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @return A list containing the labels.
*/
java.util.List getLabelsList();
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @return The count of labels.
*/
int getLabelsCount();
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @param index The index of the element to return.
* @return The labels at the given index.
*/
java.lang.String getLabels(int index);
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @param index The index of the value to return.
* @return The bytes of the labels at the given index.
*/
com.google.protobuf.ByteString getLabelsBytes(int index);
/**
*
*
*
* The value stored in the cell. Cell values can be split across
* multiple CellChunks. In that case only the value field will be
* set in CellChunks after the first: the timestamp and labels
* will only be present in the first CellChunk, even if the first
* CellChunk came in a previous ReadRowsResponse.
*
*
* bytes value = 6;
*
* @return The value.
*/
com.google.protobuf.ByteString getValue();
/**
*
*
*
* If this CellChunk is part of a chunked cell value and this is
* not the final chunk of that cell, value_size will be set to the
* total length of the cell value. The client can use this size
* to pre-allocate memory to hold the full cell value.
*
*
* int32 value_size = 7;
*
* @return The valueSize.
*/
int getValueSize();
/**
*
*
*
* Indicates that the client should drop all previous chunks for
* `row_key`, as it will be re-read from the beginning.
*
*
* bool reset_row = 8;
*
* @return Whether the resetRow field is set.
*/
boolean hasResetRow();
/**
*
*
*
* Indicates that the client should drop all previous chunks for
* `row_key`, as it will be re-read from the beginning.
*
*
* bool reset_row = 8;
*
* @return The resetRow.
*/
boolean getResetRow();
/**
*
*
*
* Indicates that the client can safely process all previous chunks for
* `row_key`, as its data has been fully read.
*
*
* bool commit_row = 9;
*
* @return Whether the commitRow field is set.
*/
boolean hasCommitRow();
/**
*
*
*
* Indicates that the client can safely process all previous chunks for
* `row_key`, as its data has been fully read.
*
*
* bool commit_row = 9;
*
* @return The commitRow.
*/
boolean getCommitRow();
com.google.bigtable.v2.ReadRowsResponse.CellChunk.RowStatusCase getRowStatusCase();
}
/**
*
*
*
* Specifies a piece of a row's contents returned as part of the read
* response stream.
*
*
* Protobuf type {@code google.bigtable.v2.ReadRowsResponse.CellChunk}
*/
public static final class CellChunk extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.bigtable.v2.ReadRowsResponse.CellChunk)
CellChunkOrBuilder {
private static final long serialVersionUID = 0L;
// Use CellChunk.newBuilder() to construct.
private CellChunk(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private CellChunk() {
rowKey_ = com.google.protobuf.ByteString.EMPTY;
labels_ = com.google.protobuf.LazyStringArrayList.emptyList();
value_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new CellChunk();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_ReadRowsResponse_CellChunk_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_ReadRowsResponse_CellChunk_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.bigtable.v2.ReadRowsResponse.CellChunk.class,
com.google.bigtable.v2.ReadRowsResponse.CellChunk.Builder.class);
}
private int bitField0_;
private int rowStatusCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object rowStatus_;
public enum RowStatusCase
implements
com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
RESET_ROW(8),
COMMIT_ROW(9),
ROWSTATUS_NOT_SET(0);
private final int value;
private RowStatusCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static RowStatusCase valueOf(int value) {
return forNumber(value);
}
public static RowStatusCase forNumber(int value) {
switch (value) {
case 8:
return RESET_ROW;
case 9:
return COMMIT_ROW;
case 0:
return ROWSTATUS_NOT_SET;
default:
return null;
}
}
public int getNumber() {
return this.value;
}
};
public RowStatusCase getRowStatusCase() {
return RowStatusCase.forNumber(rowStatusCase_);
}
public static final int ROW_KEY_FIELD_NUMBER = 1;
private com.google.protobuf.ByteString rowKey_ = com.google.protobuf.ByteString.EMPTY;
/**
*
*
*
* The row key for this chunk of data. If the row key is empty,
* this CellChunk is a continuation of the same row as the previous
* CellChunk in the response stream, even if that CellChunk was in a
* previous ReadRowsResponse message.
*
*
* bytes row_key = 1;
*
* @return The rowKey.
*/
@java.lang.Override
public com.google.protobuf.ByteString getRowKey() {
return rowKey_;
}
public static final int FAMILY_NAME_FIELD_NUMBER = 2;
private com.google.protobuf.StringValue familyName_;
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*
* @return Whether the familyName field is set.
*/
@java.lang.Override
public boolean hasFamilyName() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*
* @return The familyName.
*/
@java.lang.Override
public com.google.protobuf.StringValue getFamilyName() {
return familyName_ == null
? com.google.protobuf.StringValue.getDefaultInstance()
: familyName_;
}
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*/
@java.lang.Override
public com.google.protobuf.StringValueOrBuilder getFamilyNameOrBuilder() {
return familyName_ == null
? com.google.protobuf.StringValue.getDefaultInstance()
: familyName_;
}
public static final int QUALIFIER_FIELD_NUMBER = 3;
private com.google.protobuf.BytesValue qualifier_;
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*
* @return Whether the qualifier field is set.
*/
@java.lang.Override
public boolean hasQualifier() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*
* @return The qualifier.
*/
@java.lang.Override
public com.google.protobuf.BytesValue getQualifier() {
return qualifier_ == null ? com.google.protobuf.BytesValue.getDefaultInstance() : qualifier_;
}
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*/
@java.lang.Override
public com.google.protobuf.BytesValueOrBuilder getQualifierOrBuilder() {
return qualifier_ == null ? com.google.protobuf.BytesValue.getDefaultInstance() : qualifier_;
}
public static final int TIMESTAMP_MICROS_FIELD_NUMBER = 4;
private long timestampMicros_ = 0L;
/**
*
*
*
* The cell's stored timestamp, which also uniquely identifies it
* within its column. Values are always expressed in
* microseconds, but individual tables may set a coarser
* granularity to further restrict the allowed values. For
* example, a table which specifies millisecond granularity will
* only allow values of `timestamp_micros` which are multiples of
* 1000. Timestamps are only set in the first CellChunk per cell
* (for cells split into multiple chunks).
*
*
* int64 timestamp_micros = 4;
*
* @return The timestampMicros.
*/
@java.lang.Override
public long getTimestampMicros() {
return timestampMicros_;
}
public static final int LABELS_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList labels_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @return A list containing the labels.
*/
public com.google.protobuf.ProtocolStringList getLabelsList() {
return labels_;
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @return The count of labels.
*/
public int getLabelsCount() {
return labels_.size();
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @param index The index of the element to return.
* @return The labels at the given index.
*/
public java.lang.String getLabels(int index) {
return labels_.get(index);
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @param index The index of the value to return.
* @return The bytes of the labels at the given index.
*/
public com.google.protobuf.ByteString getLabelsBytes(int index) {
return labels_.getByteString(index);
}
public static final int VALUE_FIELD_NUMBER = 6;
private com.google.protobuf.ByteString value_ = com.google.protobuf.ByteString.EMPTY;
/**
*
*
*
* The value stored in the cell. Cell values can be split across
* multiple CellChunks. In that case only the value field will be
* set in CellChunks after the first: the timestamp and labels
* will only be present in the first CellChunk, even if the first
* CellChunk came in a previous ReadRowsResponse.
*
*
* bytes value = 6;
*
* @return The value.
*/
@java.lang.Override
public com.google.protobuf.ByteString getValue() {
return value_;
}
public static final int VALUE_SIZE_FIELD_NUMBER = 7;
private int valueSize_ = 0;
/**
*
*
*
* If this CellChunk is part of a chunked cell value and this is
* not the final chunk of that cell, value_size will be set to the
* total length of the cell value. The client can use this size
* to pre-allocate memory to hold the full cell value.
*
*
* int32 value_size = 7;
*
* @return The valueSize.
*/
@java.lang.Override
public int getValueSize() {
return valueSize_;
}
public static final int RESET_ROW_FIELD_NUMBER = 8;
/**
*
*
*
* Indicates that the client should drop all previous chunks for
* `row_key`, as it will be re-read from the beginning.
*
*
* bool reset_row = 8;
*
* @return Whether the resetRow field is set.
*/
@java.lang.Override
public boolean hasResetRow() {
return rowStatusCase_ == 8;
}
/**
*
*
*
* Indicates that the client should drop all previous chunks for
* `row_key`, as it will be re-read from the beginning.
*
*
* bool reset_row = 8;
*
* @return The resetRow.
*/
@java.lang.Override
public boolean getResetRow() {
if (rowStatusCase_ == 8) {
return (java.lang.Boolean) rowStatus_;
}
return false;
}
public static final int COMMIT_ROW_FIELD_NUMBER = 9;
/**
*
*
*
* Indicates that the client can safely process all previous chunks for
* `row_key`, as its data has been fully read.
*
*
* bool commit_row = 9;
*
* @return Whether the commitRow field is set.
*/
@java.lang.Override
public boolean hasCommitRow() {
return rowStatusCase_ == 9;
}
/**
*
*
*
* Indicates that the client can safely process all previous chunks for
* `row_key`, as its data has been fully read.
*
*
* bool commit_row = 9;
*
* @return The commitRow.
*/
@java.lang.Override
public boolean getCommitRow() {
if (rowStatusCase_ == 9) {
return (java.lang.Boolean) rowStatus_;
}
return false;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (!rowKey_.isEmpty()) {
output.writeBytes(1, rowKey_);
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(2, getFamilyName());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(3, getQualifier());
}
if (timestampMicros_ != 0L) {
output.writeInt64(4, timestampMicros_);
}
for (int i = 0; i < labels_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, labels_.getRaw(i));
}
if (!value_.isEmpty()) {
output.writeBytes(6, value_);
}
if (valueSize_ != 0) {
output.writeInt32(7, valueSize_);
}
if (rowStatusCase_ == 8) {
output.writeBool(8, (boolean) ((java.lang.Boolean) rowStatus_));
}
if (rowStatusCase_ == 9) {
output.writeBool(9, (boolean) ((java.lang.Boolean) rowStatus_));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!rowKey_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream.computeBytesSize(1, rowKey_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getFamilyName());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getQualifier());
}
if (timestampMicros_ != 0L) {
size += com.google.protobuf.CodedOutputStream.computeInt64Size(4, timestampMicros_);
}
{
int dataSize = 0;
for (int i = 0; i < labels_.size(); i++) {
dataSize += computeStringSizeNoTag(labels_.getRaw(i));
}
size += dataSize;
size += 1 * getLabelsList().size();
}
if (!value_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream.computeBytesSize(6, value_);
}
if (valueSize_ != 0) {
size += com.google.protobuf.CodedOutputStream.computeInt32Size(7, valueSize_);
}
if (rowStatusCase_ == 8) {
size +=
com.google.protobuf.CodedOutputStream.computeBoolSize(
8, (boolean) ((java.lang.Boolean) rowStatus_));
}
if (rowStatusCase_ == 9) {
size +=
com.google.protobuf.CodedOutputStream.computeBoolSize(
9, (boolean) ((java.lang.Boolean) rowStatus_));
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.bigtable.v2.ReadRowsResponse.CellChunk)) {
return super.equals(obj);
}
com.google.bigtable.v2.ReadRowsResponse.CellChunk other =
(com.google.bigtable.v2.ReadRowsResponse.CellChunk) obj;
if (!getRowKey().equals(other.getRowKey())) return false;
if (hasFamilyName() != other.hasFamilyName()) return false;
if (hasFamilyName()) {
if (!getFamilyName().equals(other.getFamilyName())) return false;
}
if (hasQualifier() != other.hasQualifier()) return false;
if (hasQualifier()) {
if (!getQualifier().equals(other.getQualifier())) return false;
}
if (getTimestampMicros() != other.getTimestampMicros()) return false;
if (!getLabelsList().equals(other.getLabelsList())) return false;
if (!getValue().equals(other.getValue())) return false;
if (getValueSize() != other.getValueSize()) return false;
if (!getRowStatusCase().equals(other.getRowStatusCase())) return false;
switch (rowStatusCase_) {
case 8:
if (getResetRow() != other.getResetRow()) return false;
break;
case 9:
if (getCommitRow() != other.getCommitRow()) return false;
break;
case 0:
default:
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + ROW_KEY_FIELD_NUMBER;
hash = (53 * hash) + getRowKey().hashCode();
if (hasFamilyName()) {
hash = (37 * hash) + FAMILY_NAME_FIELD_NUMBER;
hash = (53 * hash) + getFamilyName().hashCode();
}
if (hasQualifier()) {
hash = (37 * hash) + QUALIFIER_FIELD_NUMBER;
hash = (53 * hash) + getQualifier().hashCode();
}
hash = (37 * hash) + TIMESTAMP_MICROS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getTimestampMicros());
if (getLabelsCount() > 0) {
hash = (37 * hash) + LABELS_FIELD_NUMBER;
hash = (53 * hash) + getLabelsList().hashCode();
}
hash = (37 * hash) + VALUE_FIELD_NUMBER;
hash = (53 * hash) + getValue().hashCode();
hash = (37 * hash) + VALUE_SIZE_FIELD_NUMBER;
hash = (53 * hash) + getValueSize();
switch (rowStatusCase_) {
case 8:
hash = (37 * hash) + RESET_ROW_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getResetRow());
break;
case 9:
hash = (37 * hash) + COMMIT_ROW_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getCommitRow());
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.bigtable.v2.ReadRowsResponse.CellChunk prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Specifies a piece of a row's contents returned as part of the read
* response stream.
*
*
* Protobuf type {@code google.bigtable.v2.ReadRowsResponse.CellChunk}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.bigtable.v2.ReadRowsResponse.CellChunk)
com.google.bigtable.v2.ReadRowsResponse.CellChunkOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_ReadRowsResponse_CellChunk_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_ReadRowsResponse_CellChunk_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.bigtable.v2.ReadRowsResponse.CellChunk.class,
com.google.bigtable.v2.ReadRowsResponse.CellChunk.Builder.class);
}
// Construct using com.google.bigtable.v2.ReadRowsResponse.CellChunk.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getFamilyNameFieldBuilder();
getQualifierFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
rowKey_ = com.google.protobuf.ByteString.EMPTY;
familyName_ = null;
if (familyNameBuilder_ != null) {
familyNameBuilder_.dispose();
familyNameBuilder_ = null;
}
qualifier_ = null;
if (qualifierBuilder_ != null) {
qualifierBuilder_.dispose();
qualifierBuilder_ = null;
}
timestampMicros_ = 0L;
labels_ = com.google.protobuf.LazyStringArrayList.emptyList();
value_ = com.google.protobuf.ByteString.EMPTY;
valueSize_ = 0;
rowStatusCase_ = 0;
rowStatus_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_ReadRowsResponse_CellChunk_descriptor;
}
@java.lang.Override
public com.google.bigtable.v2.ReadRowsResponse.CellChunk getDefaultInstanceForType() {
return com.google.bigtable.v2.ReadRowsResponse.CellChunk.getDefaultInstance();
}
@java.lang.Override
public com.google.bigtable.v2.ReadRowsResponse.CellChunk build() {
com.google.bigtable.v2.ReadRowsResponse.CellChunk result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.bigtable.v2.ReadRowsResponse.CellChunk buildPartial() {
com.google.bigtable.v2.ReadRowsResponse.CellChunk result =
new com.google.bigtable.v2.ReadRowsResponse.CellChunk(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(com.google.bigtable.v2.ReadRowsResponse.CellChunk result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.rowKey_ = rowKey_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.familyName_ =
familyNameBuilder_ == null ? familyName_ : familyNameBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.qualifier_ = qualifierBuilder_ == null ? qualifier_ : qualifierBuilder_.build();
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.timestampMicros_ = timestampMicros_;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
labels_.makeImmutable();
result.labels_ = labels_;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
result.value_ = value_;
}
if (((from_bitField0_ & 0x00000040) != 0)) {
result.valueSize_ = valueSize_;
}
result.bitField0_ |= to_bitField0_;
}
private void buildPartialOneofs(com.google.bigtable.v2.ReadRowsResponse.CellChunk result) {
result.rowStatusCase_ = rowStatusCase_;
result.rowStatus_ = this.rowStatus_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.bigtable.v2.ReadRowsResponse.CellChunk) {
return mergeFrom((com.google.bigtable.v2.ReadRowsResponse.CellChunk) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.bigtable.v2.ReadRowsResponse.CellChunk other) {
if (other == com.google.bigtable.v2.ReadRowsResponse.CellChunk.getDefaultInstance())
return this;
if (other.getRowKey() != com.google.protobuf.ByteString.EMPTY) {
setRowKey(other.getRowKey());
}
if (other.hasFamilyName()) {
mergeFamilyName(other.getFamilyName());
}
if (other.hasQualifier()) {
mergeQualifier(other.getQualifier());
}
if (other.getTimestampMicros() != 0L) {
setTimestampMicros(other.getTimestampMicros());
}
if (!other.labels_.isEmpty()) {
if (labels_.isEmpty()) {
labels_ = other.labels_;
bitField0_ |= 0x00000010;
} else {
ensureLabelsIsMutable();
labels_.addAll(other.labels_);
}
onChanged();
}
if (other.getValue() != com.google.protobuf.ByteString.EMPTY) {
setValue(other.getValue());
}
if (other.getValueSize() != 0) {
setValueSize(other.getValueSize());
}
switch (other.getRowStatusCase()) {
case RESET_ROW:
{
setResetRow(other.getResetRow());
break;
}
case COMMIT_ROW:
{
setCommitRow(other.getCommitRow());
break;
}
case ROWSTATUS_NOT_SET:
{
break;
}
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
rowKey_ = input.readBytes();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
input.readMessage(getFamilyNameFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 26:
{
input.readMessage(getQualifierFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 26
case 32:
{
timestampMicros_ = input.readInt64();
bitField0_ |= 0x00000008;
break;
} // case 32
case 42:
{
java.lang.String s = input.readStringRequireUtf8();
ensureLabelsIsMutable();
labels_.add(s);
break;
} // case 42
case 50:
{
value_ = input.readBytes();
bitField0_ |= 0x00000020;
break;
} // case 50
case 56:
{
valueSize_ = input.readInt32();
bitField0_ |= 0x00000040;
break;
} // case 56
case 64:
{
rowStatus_ = input.readBool();
rowStatusCase_ = 8;
break;
} // case 64
case 72:
{
rowStatus_ = input.readBool();
rowStatusCase_ = 9;
break;
} // case 72
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int rowStatusCase_ = 0;
private java.lang.Object rowStatus_;
public RowStatusCase getRowStatusCase() {
return RowStatusCase.forNumber(rowStatusCase_);
}
public Builder clearRowStatus() {
rowStatusCase_ = 0;
rowStatus_ = null;
onChanged();
return this;
}
private int bitField0_;
private com.google.protobuf.ByteString rowKey_ = com.google.protobuf.ByteString.EMPTY;
/**
*
*
*
* The row key for this chunk of data. If the row key is empty,
* this CellChunk is a continuation of the same row as the previous
* CellChunk in the response stream, even if that CellChunk was in a
* previous ReadRowsResponse message.
*
*
* bytes row_key = 1;
*
* @return The rowKey.
*/
@java.lang.Override
public com.google.protobuf.ByteString getRowKey() {
return rowKey_;
}
/**
*
*
*
* The row key for this chunk of data. If the row key is empty,
* this CellChunk is a continuation of the same row as the previous
* CellChunk in the response stream, even if that CellChunk was in a
* previous ReadRowsResponse message.
*
*
* bytes row_key = 1;
*
* @param value The rowKey to set.
* @return This builder for chaining.
*/
public Builder setRowKey(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
rowKey_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The row key for this chunk of data. If the row key is empty,
* this CellChunk is a continuation of the same row as the previous
* CellChunk in the response stream, even if that CellChunk was in a
* previous ReadRowsResponse message.
*
*
* bytes row_key = 1;
*
* @return This builder for chaining.
*/
public Builder clearRowKey() {
bitField0_ = (bitField0_ & ~0x00000001);
rowKey_ = getDefaultInstance().getRowKey();
onChanged();
return this;
}
private com.google.protobuf.StringValue familyName_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.StringValue,
com.google.protobuf.StringValue.Builder,
com.google.protobuf.StringValueOrBuilder>
familyNameBuilder_;
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*
* @return Whether the familyName field is set.
*/
public boolean hasFamilyName() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*
* @return The familyName.
*/
public com.google.protobuf.StringValue getFamilyName() {
if (familyNameBuilder_ == null) {
return familyName_ == null
? com.google.protobuf.StringValue.getDefaultInstance()
: familyName_;
} else {
return familyNameBuilder_.getMessage();
}
}
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*/
public Builder setFamilyName(com.google.protobuf.StringValue value) {
if (familyNameBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
familyName_ = value;
} else {
familyNameBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*/
public Builder setFamilyName(com.google.protobuf.StringValue.Builder builderForValue) {
if (familyNameBuilder_ == null) {
familyName_ = builderForValue.build();
} else {
familyNameBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*/
public Builder mergeFamilyName(com.google.protobuf.StringValue value) {
if (familyNameBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)
&& familyName_ != null
&& familyName_ != com.google.protobuf.StringValue.getDefaultInstance()) {
getFamilyNameBuilder().mergeFrom(value);
} else {
familyName_ = value;
}
} else {
familyNameBuilder_.mergeFrom(value);
}
if (familyName_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*/
public Builder clearFamilyName() {
bitField0_ = (bitField0_ & ~0x00000002);
familyName_ = null;
if (familyNameBuilder_ != null) {
familyNameBuilder_.dispose();
familyNameBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*/
public com.google.protobuf.StringValue.Builder getFamilyNameBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getFamilyNameFieldBuilder().getBuilder();
}
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*/
public com.google.protobuf.StringValueOrBuilder getFamilyNameOrBuilder() {
if (familyNameBuilder_ != null) {
return familyNameBuilder_.getMessageOrBuilder();
} else {
return familyName_ == null
? com.google.protobuf.StringValue.getDefaultInstance()
: familyName_;
}
}
/**
*
*
*
* The column family name for this chunk of data. If this message
* is not present this CellChunk is a continuation of the same column
* family as the previous CellChunk. The empty string can occur as a
* column family name in a response so clients must check
* explicitly for the presence of this message, not just for
* `family_name.value` being non-empty.
*
*
* .google.protobuf.StringValue family_name = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.StringValue,
com.google.protobuf.StringValue.Builder,
com.google.protobuf.StringValueOrBuilder>
getFamilyNameFieldBuilder() {
if (familyNameBuilder_ == null) {
familyNameBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.StringValue,
com.google.protobuf.StringValue.Builder,
com.google.protobuf.StringValueOrBuilder>(
getFamilyName(), getParentForChildren(), isClean());
familyName_ = null;
}
return familyNameBuilder_;
}
private com.google.protobuf.BytesValue qualifier_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.BytesValue,
com.google.protobuf.BytesValue.Builder,
com.google.protobuf.BytesValueOrBuilder>
qualifierBuilder_;
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*
* @return Whether the qualifier field is set.
*/
public boolean hasQualifier() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*
* @return The qualifier.
*/
public com.google.protobuf.BytesValue getQualifier() {
if (qualifierBuilder_ == null) {
return qualifier_ == null
? com.google.protobuf.BytesValue.getDefaultInstance()
: qualifier_;
} else {
return qualifierBuilder_.getMessage();
}
}
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*/
public Builder setQualifier(com.google.protobuf.BytesValue value) {
if (qualifierBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
qualifier_ = value;
} else {
qualifierBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*/
public Builder setQualifier(com.google.protobuf.BytesValue.Builder builderForValue) {
if (qualifierBuilder_ == null) {
qualifier_ = builderForValue.build();
} else {
qualifierBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*/
public Builder mergeQualifier(com.google.protobuf.BytesValue value) {
if (qualifierBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)
&& qualifier_ != null
&& qualifier_ != com.google.protobuf.BytesValue.getDefaultInstance()) {
getQualifierBuilder().mergeFrom(value);
} else {
qualifier_ = value;
}
} else {
qualifierBuilder_.mergeFrom(value);
}
if (qualifier_ != null) {
bitField0_ |= 0x00000004;
onChanged();
}
return this;
}
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*/
public Builder clearQualifier() {
bitField0_ = (bitField0_ & ~0x00000004);
qualifier_ = null;
if (qualifierBuilder_ != null) {
qualifierBuilder_.dispose();
qualifierBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*/
public com.google.protobuf.BytesValue.Builder getQualifierBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getQualifierFieldBuilder().getBuilder();
}
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*/
public com.google.protobuf.BytesValueOrBuilder getQualifierOrBuilder() {
if (qualifierBuilder_ != null) {
return qualifierBuilder_.getMessageOrBuilder();
} else {
return qualifier_ == null
? com.google.protobuf.BytesValue.getDefaultInstance()
: qualifier_;
}
}
/**
*
*
*
* The column qualifier for this chunk of data. If this message
* is not present, this CellChunk is a continuation of the same column
* as the previous CellChunk. Column qualifiers may be empty so
* clients must check for the presence of this message, not just
* for `qualifier.value` being non-empty.
*
*
* .google.protobuf.BytesValue qualifier = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.BytesValue,
com.google.protobuf.BytesValue.Builder,
com.google.protobuf.BytesValueOrBuilder>
getQualifierFieldBuilder() {
if (qualifierBuilder_ == null) {
qualifierBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.BytesValue,
com.google.protobuf.BytesValue.Builder,
com.google.protobuf.BytesValueOrBuilder>(
getQualifier(), getParentForChildren(), isClean());
qualifier_ = null;
}
return qualifierBuilder_;
}
private long timestampMicros_;
/**
*
*
*
* The cell's stored timestamp, which also uniquely identifies it
* within its column. Values are always expressed in
* microseconds, but individual tables may set a coarser
* granularity to further restrict the allowed values. For
* example, a table which specifies millisecond granularity will
* only allow values of `timestamp_micros` which are multiples of
* 1000. Timestamps are only set in the first CellChunk per cell
* (for cells split into multiple chunks).
*
*
* int64 timestamp_micros = 4;
*
* @return The timestampMicros.
*/
@java.lang.Override
public long getTimestampMicros() {
return timestampMicros_;
}
/**
*
*
*
* The cell's stored timestamp, which also uniquely identifies it
* within its column. Values are always expressed in
* microseconds, but individual tables may set a coarser
* granularity to further restrict the allowed values. For
* example, a table which specifies millisecond granularity will
* only allow values of `timestamp_micros` which are multiples of
* 1000. Timestamps are only set in the first CellChunk per cell
* (for cells split into multiple chunks).
*
*
* int64 timestamp_micros = 4;
*
* @param value The timestampMicros to set.
* @return This builder for chaining.
*/
public Builder setTimestampMicros(long value) {
timestampMicros_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* The cell's stored timestamp, which also uniquely identifies it
* within its column. Values are always expressed in
* microseconds, but individual tables may set a coarser
* granularity to further restrict the allowed values. For
* example, a table which specifies millisecond granularity will
* only allow values of `timestamp_micros` which are multiples of
* 1000. Timestamps are only set in the first CellChunk per cell
* (for cells split into multiple chunks).
*
*
* int64 timestamp_micros = 4;
*
* @return This builder for chaining.
*/
public Builder clearTimestampMicros() {
bitField0_ = (bitField0_ & ~0x00000008);
timestampMicros_ = 0L;
onChanged();
return this;
}
private com.google.protobuf.LazyStringArrayList labels_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureLabelsIsMutable() {
if (!labels_.isModifiable()) {
labels_ = new com.google.protobuf.LazyStringArrayList(labels_);
}
bitField0_ |= 0x00000010;
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @return A list containing the labels.
*/
public com.google.protobuf.ProtocolStringList getLabelsList() {
labels_.makeImmutable();
return labels_;
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @return The count of labels.
*/
public int getLabelsCount() {
return labels_.size();
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @param index The index of the element to return.
* @return The labels at the given index.
*/
public java.lang.String getLabels(int index) {
return labels_.get(index);
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @param index The index of the value to return.
* @return The bytes of the labels at the given index.
*/
public com.google.protobuf.ByteString getLabelsBytes(int index) {
return labels_.getByteString(index);
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @param index The index to set the value at.
* @param value The labels to set.
* @return This builder for chaining.
*/
public Builder setLabels(int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureLabelsIsMutable();
labels_.set(index, value);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @param value The labels to add.
* @return This builder for chaining.
*/
public Builder addLabels(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureLabelsIsMutable();
labels_.add(value);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @param values The labels to add.
* @return This builder for chaining.
*/
public Builder addAllLabels(java.lang.Iterable values) {
ensureLabelsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, labels_);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @return This builder for chaining.
*/
public Builder clearLabels() {
labels_ = com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000010);
;
onChanged();
return this;
}
/**
*
*
*
* Labels applied to the cell by a
* [RowFilter][google.bigtable.v2.RowFilter]. Labels are only set
* on the first CellChunk per cell.
*
*
* repeated string labels = 5;
*
* @param value The bytes of the labels to add.
* @return This builder for chaining.
*/
public Builder addLabelsBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureLabelsIsMutable();
labels_.add(value);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
private com.google.protobuf.ByteString value_ = com.google.protobuf.ByteString.EMPTY;
/**
*
*
*
* The value stored in the cell. Cell values can be split across
* multiple CellChunks. In that case only the value field will be
* set in CellChunks after the first: the timestamp and labels
* will only be present in the first CellChunk, even if the first
* CellChunk came in a previous ReadRowsResponse.
*
*
* bytes value = 6;
*
* @return The value.
*/
@java.lang.Override
public com.google.protobuf.ByteString getValue() {
return value_;
}
/**
*
*
*
* The value stored in the cell. Cell values can be split across
* multiple CellChunks. In that case only the value field will be
* set in CellChunks after the first: the timestamp and labels
* will only be present in the first CellChunk, even if the first
* CellChunk came in a previous ReadRowsResponse.
*
*
* bytes value = 6;
*
* @param value The value to set.
* @return This builder for chaining.
*/
public Builder setValue(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
value_ = value;
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
*
*
* The value stored in the cell. Cell values can be split across
* multiple CellChunks. In that case only the value field will be
* set in CellChunks after the first: the timestamp and labels
* will only be present in the first CellChunk, even if the first
* CellChunk came in a previous ReadRowsResponse.
*
*
* bytes value = 6;
*
* @return This builder for chaining.
*/
public Builder clearValue() {
bitField0_ = (bitField0_ & ~0x00000020);
value_ = getDefaultInstance().getValue();
onChanged();
return this;
}
private int valueSize_;
/**
*
*
*
* If this CellChunk is part of a chunked cell value and this is
* not the final chunk of that cell, value_size will be set to the
* total length of the cell value. The client can use this size
* to pre-allocate memory to hold the full cell value.
*
*
* int32 value_size = 7;
*
* @return The valueSize.
*/
@java.lang.Override
public int getValueSize() {
return valueSize_;
}
/**
*
*
*
* If this CellChunk is part of a chunked cell value and this is
* not the final chunk of that cell, value_size will be set to the
* total length of the cell value. The client can use this size
* to pre-allocate memory to hold the full cell value.
*
*
* int32 value_size = 7;
*
* @param value The valueSize to set.
* @return This builder for chaining.
*/
public Builder setValueSize(int value) {
valueSize_ = value;
bitField0_ |= 0x00000040;
onChanged();
return this;
}
/**
*
*
*
* If this CellChunk is part of a chunked cell value and this is
* not the final chunk of that cell, value_size will be set to the
* total length of the cell value. The client can use this size
* to pre-allocate memory to hold the full cell value.
*
*
* int32 value_size = 7;
*
* @return This builder for chaining.
*/
public Builder clearValueSize() {
bitField0_ = (bitField0_ & ~0x00000040);
valueSize_ = 0;
onChanged();
return this;
}
/**
*
*
*
* Indicates that the client should drop all previous chunks for
* `row_key`, as it will be re-read from the beginning.
*
*
* bool reset_row = 8;
*
* @return Whether the resetRow field is set.
*/
public boolean hasResetRow() {
return rowStatusCase_ == 8;
}
/**
*
*
*
* Indicates that the client should drop all previous chunks for
* `row_key`, as it will be re-read from the beginning.
*
*
* bool reset_row = 8;
*
* @return The resetRow.
*/
public boolean getResetRow() {
if (rowStatusCase_ == 8) {
return (java.lang.Boolean) rowStatus_;
}
return false;
}
/**
*
*
*
* Indicates that the client should drop all previous chunks for
* `row_key`, as it will be re-read from the beginning.
*
*
* bool reset_row = 8;
*
* @param value The resetRow to set.
* @return This builder for chaining.
*/
public Builder setResetRow(boolean value) {
rowStatusCase_ = 8;
rowStatus_ = value;
onChanged();
return this;
}
/**
*
*
*
* Indicates that the client should drop all previous chunks for
* `row_key`, as it will be re-read from the beginning.
*
*
* bool reset_row = 8;
*
* @return This builder for chaining.
*/
public Builder clearResetRow() {
if (rowStatusCase_ == 8) {
rowStatusCase_ = 0;
rowStatus_ = null;
onChanged();
}
return this;
}
/**
*
*
*
* Indicates that the client can safely process all previous chunks for
* `row_key`, as its data has been fully read.
*
*
* bool commit_row = 9;
*
* @return Whether the commitRow field is set.
*/
public boolean hasCommitRow() {
return rowStatusCase_ == 9;
}
/**
*
*
*
* Indicates that the client can safely process all previous chunks for
* `row_key`, as its data has been fully read.
*
*
* bool commit_row = 9;
*
* @return The commitRow.
*/
public boolean getCommitRow() {
if (rowStatusCase_ == 9) {
return (java.lang.Boolean) rowStatus_;
}
return false;
}
/**
*
*
*
* Indicates that the client can safely process all previous chunks for
* `row_key`, as its data has been fully read.
*
*
* bool commit_row = 9;
*
* @param value The commitRow to set.
* @return This builder for chaining.
*/
public Builder setCommitRow(boolean value) {
rowStatusCase_ = 9;
rowStatus_ = value;
onChanged();
return this;
}
/**
*
*
*
* Indicates that the client can safely process all previous chunks for
* `row_key`, as its data has been fully read.
*
*
* bool commit_row = 9;
*
* @return This builder for chaining.
*/
public Builder clearCommitRow() {
if (rowStatusCase_ == 9) {
rowStatusCase_ = 0;
rowStatus_ = null;
onChanged();
}
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.bigtable.v2.ReadRowsResponse.CellChunk)
}
// @@protoc_insertion_point(class_scope:google.bigtable.v2.ReadRowsResponse.CellChunk)
private static final com.google.bigtable.v2.ReadRowsResponse.CellChunk DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.bigtable.v2.ReadRowsResponse.CellChunk();
}
public static com.google.bigtable.v2.ReadRowsResponse.CellChunk getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public CellChunk parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException()
.setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.bigtable.v2.ReadRowsResponse.CellChunk getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int bitField0_;
public static final int CHUNKS_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private java.util.List chunks_;
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
@java.lang.Override
public java.util.List getChunksList() {
return chunks_;
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
@java.lang.Override
public java.util.List extends com.google.bigtable.v2.ReadRowsResponse.CellChunkOrBuilder>
getChunksOrBuilderList() {
return chunks_;
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
@java.lang.Override
public int getChunksCount() {
return chunks_.size();
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
@java.lang.Override
public com.google.bigtable.v2.ReadRowsResponse.CellChunk getChunks(int index) {
return chunks_.get(index);
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
@java.lang.Override
public com.google.bigtable.v2.ReadRowsResponse.CellChunkOrBuilder getChunksOrBuilder(int index) {
return chunks_.get(index);
}
public static final int LAST_SCANNED_ROW_KEY_FIELD_NUMBER = 2;
private com.google.protobuf.ByteString lastScannedRowKey_ = com.google.protobuf.ByteString.EMPTY;
/**
*
*
*
* Optionally the server might return the row key of the last row it
* has scanned. The client can use this to construct a more
* efficient retry request if needed: any row keys or portions of
* ranges less than this row key can be dropped from the request.
* This is primarily useful for cases where the server has read a
* lot of data that was filtered out since the last committed row
* key, allowing the client to skip that work on a retry.
*
*
* bytes last_scanned_row_key = 2;
*
* @return The lastScannedRowKey.
*/
@java.lang.Override
public com.google.protobuf.ByteString getLastScannedRowKey() {
return lastScannedRowKey_;
}
public static final int REQUEST_STATS_FIELD_NUMBER = 3;
private com.google.bigtable.v2.RequestStats requestStats_;
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*
* @return Whether the requestStats field is set.
*/
@java.lang.Override
public boolean hasRequestStats() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*
* @return The requestStats.
*/
@java.lang.Override
public com.google.bigtable.v2.RequestStats getRequestStats() {
return requestStats_ == null
? com.google.bigtable.v2.RequestStats.getDefaultInstance()
: requestStats_;
}
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*/
@java.lang.Override
public com.google.bigtable.v2.RequestStatsOrBuilder getRequestStatsOrBuilder() {
return requestStats_ == null
? com.google.bigtable.v2.RequestStats.getDefaultInstance()
: requestStats_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
for (int i = 0; i < chunks_.size(); i++) {
output.writeMessage(1, chunks_.get(i));
}
if (!lastScannedRowKey_.isEmpty()) {
output.writeBytes(2, lastScannedRowKey_);
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(3, getRequestStats());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < chunks_.size(); i++) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, chunks_.get(i));
}
if (!lastScannedRowKey_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream.computeBytesSize(2, lastScannedRowKey_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getRequestStats());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.bigtable.v2.ReadRowsResponse)) {
return super.equals(obj);
}
com.google.bigtable.v2.ReadRowsResponse other = (com.google.bigtable.v2.ReadRowsResponse) obj;
if (!getChunksList().equals(other.getChunksList())) return false;
if (!getLastScannedRowKey().equals(other.getLastScannedRowKey())) return false;
if (hasRequestStats() != other.hasRequestStats()) return false;
if (hasRequestStats()) {
if (!getRequestStats().equals(other.getRequestStats())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getChunksCount() > 0) {
hash = (37 * hash) + CHUNKS_FIELD_NUMBER;
hash = (53 * hash) + getChunksList().hashCode();
}
hash = (37 * hash) + LAST_SCANNED_ROW_KEY_FIELD_NUMBER;
hash = (53 * hash) + getLastScannedRowKey().hashCode();
if (hasRequestStats()) {
hash = (37 * hash) + REQUEST_STATS_FIELD_NUMBER;
hash = (53 * hash) + getRequestStats().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.bigtable.v2.ReadRowsResponse parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.bigtable.v2.ReadRowsResponse parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.bigtable.v2.ReadRowsResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.bigtable.v2.ReadRowsResponse parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.bigtable.v2.ReadRowsResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.bigtable.v2.ReadRowsResponse parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.bigtable.v2.ReadRowsResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.bigtable.v2.ReadRowsResponse parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.bigtable.v2.ReadRowsResponse parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.bigtable.v2.ReadRowsResponse parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.bigtable.v2.ReadRowsResponse parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.bigtable.v2.ReadRowsResponse parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.bigtable.v2.ReadRowsResponse prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Response message for Bigtable.ReadRows.
*
*
* Protobuf type {@code google.bigtable.v2.ReadRowsResponse}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.bigtable.v2.ReadRowsResponse)
com.google.bigtable.v2.ReadRowsResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_ReadRowsResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_ReadRowsResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.bigtable.v2.ReadRowsResponse.class,
com.google.bigtable.v2.ReadRowsResponse.Builder.class);
}
// Construct using com.google.bigtable.v2.ReadRowsResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getChunksFieldBuilder();
getRequestStatsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (chunksBuilder_ == null) {
chunks_ = java.util.Collections.emptyList();
} else {
chunks_ = null;
chunksBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
lastScannedRowKey_ = com.google.protobuf.ByteString.EMPTY;
requestStats_ = null;
if (requestStatsBuilder_ != null) {
requestStatsBuilder_.dispose();
requestStatsBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_ReadRowsResponse_descriptor;
}
@java.lang.Override
public com.google.bigtable.v2.ReadRowsResponse getDefaultInstanceForType() {
return com.google.bigtable.v2.ReadRowsResponse.getDefaultInstance();
}
@java.lang.Override
public com.google.bigtable.v2.ReadRowsResponse build() {
com.google.bigtable.v2.ReadRowsResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.bigtable.v2.ReadRowsResponse buildPartial() {
com.google.bigtable.v2.ReadRowsResponse result =
new com.google.bigtable.v2.ReadRowsResponse(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartialRepeatedFields(com.google.bigtable.v2.ReadRowsResponse result) {
if (chunksBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
chunks_ = java.util.Collections.unmodifiableList(chunks_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.chunks_ = chunks_;
} else {
result.chunks_ = chunksBuilder_.build();
}
}
private void buildPartial0(com.google.bigtable.v2.ReadRowsResponse result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.lastScannedRowKey_ = lastScannedRowKey_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000004) != 0)) {
result.requestStats_ =
requestStatsBuilder_ == null ? requestStats_ : requestStatsBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.bigtable.v2.ReadRowsResponse) {
return mergeFrom((com.google.bigtable.v2.ReadRowsResponse) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.bigtable.v2.ReadRowsResponse other) {
if (other == com.google.bigtable.v2.ReadRowsResponse.getDefaultInstance()) return this;
if (chunksBuilder_ == null) {
if (!other.chunks_.isEmpty()) {
if (chunks_.isEmpty()) {
chunks_ = other.chunks_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureChunksIsMutable();
chunks_.addAll(other.chunks_);
}
onChanged();
}
} else {
if (!other.chunks_.isEmpty()) {
if (chunksBuilder_.isEmpty()) {
chunksBuilder_.dispose();
chunksBuilder_ = null;
chunks_ = other.chunks_;
bitField0_ = (bitField0_ & ~0x00000001);
chunksBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getChunksFieldBuilder()
: null;
} else {
chunksBuilder_.addAllMessages(other.chunks_);
}
}
}
if (other.getLastScannedRowKey() != com.google.protobuf.ByteString.EMPTY) {
setLastScannedRowKey(other.getLastScannedRowKey());
}
if (other.hasRequestStats()) {
mergeRequestStats(other.getRequestStats());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
com.google.bigtable.v2.ReadRowsResponse.CellChunk m =
input.readMessage(
com.google.bigtable.v2.ReadRowsResponse.CellChunk.parser(),
extensionRegistry);
if (chunksBuilder_ == null) {
ensureChunksIsMutable();
chunks_.add(m);
} else {
chunksBuilder_.addMessage(m);
}
break;
} // case 10
case 18:
{
lastScannedRowKey_ = input.readBytes();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26:
{
input.readMessage(getRequestStatsFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 26
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.util.List chunks_ =
java.util.Collections.emptyList();
private void ensureChunksIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
chunks_ =
new java.util.ArrayList(chunks_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.bigtable.v2.ReadRowsResponse.CellChunk,
com.google.bigtable.v2.ReadRowsResponse.CellChunk.Builder,
com.google.bigtable.v2.ReadRowsResponse.CellChunkOrBuilder>
chunksBuilder_;
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public java.util.List getChunksList() {
if (chunksBuilder_ == null) {
return java.util.Collections.unmodifiableList(chunks_);
} else {
return chunksBuilder_.getMessageList();
}
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public int getChunksCount() {
if (chunksBuilder_ == null) {
return chunks_.size();
} else {
return chunksBuilder_.getCount();
}
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public com.google.bigtable.v2.ReadRowsResponse.CellChunk getChunks(int index) {
if (chunksBuilder_ == null) {
return chunks_.get(index);
} else {
return chunksBuilder_.getMessage(index);
}
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public Builder setChunks(int index, com.google.bigtable.v2.ReadRowsResponse.CellChunk value) {
if (chunksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChunksIsMutable();
chunks_.set(index, value);
onChanged();
} else {
chunksBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public Builder setChunks(
int index, com.google.bigtable.v2.ReadRowsResponse.CellChunk.Builder builderForValue) {
if (chunksBuilder_ == null) {
ensureChunksIsMutable();
chunks_.set(index, builderForValue.build());
onChanged();
} else {
chunksBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public Builder addChunks(com.google.bigtable.v2.ReadRowsResponse.CellChunk value) {
if (chunksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChunksIsMutable();
chunks_.add(value);
onChanged();
} else {
chunksBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public Builder addChunks(int index, com.google.bigtable.v2.ReadRowsResponse.CellChunk value) {
if (chunksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChunksIsMutable();
chunks_.add(index, value);
onChanged();
} else {
chunksBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public Builder addChunks(
com.google.bigtable.v2.ReadRowsResponse.CellChunk.Builder builderForValue) {
if (chunksBuilder_ == null) {
ensureChunksIsMutable();
chunks_.add(builderForValue.build());
onChanged();
} else {
chunksBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public Builder addChunks(
int index, com.google.bigtable.v2.ReadRowsResponse.CellChunk.Builder builderForValue) {
if (chunksBuilder_ == null) {
ensureChunksIsMutable();
chunks_.add(index, builderForValue.build());
onChanged();
} else {
chunksBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public Builder addAllChunks(
java.lang.Iterable extends com.google.bigtable.v2.ReadRowsResponse.CellChunk> values) {
if (chunksBuilder_ == null) {
ensureChunksIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, chunks_);
onChanged();
} else {
chunksBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public Builder clearChunks() {
if (chunksBuilder_ == null) {
chunks_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
chunksBuilder_.clear();
}
return this;
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public Builder removeChunks(int index) {
if (chunksBuilder_ == null) {
ensureChunksIsMutable();
chunks_.remove(index);
onChanged();
} else {
chunksBuilder_.remove(index);
}
return this;
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public com.google.bigtable.v2.ReadRowsResponse.CellChunk.Builder getChunksBuilder(int index) {
return getChunksFieldBuilder().getBuilder(index);
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public com.google.bigtable.v2.ReadRowsResponse.CellChunkOrBuilder getChunksOrBuilder(
int index) {
if (chunksBuilder_ == null) {
return chunks_.get(index);
} else {
return chunksBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public java.util.List extends com.google.bigtable.v2.ReadRowsResponse.CellChunkOrBuilder>
getChunksOrBuilderList() {
if (chunksBuilder_ != null) {
return chunksBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(chunks_);
}
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public com.google.bigtable.v2.ReadRowsResponse.CellChunk.Builder addChunksBuilder() {
return getChunksFieldBuilder()
.addBuilder(com.google.bigtable.v2.ReadRowsResponse.CellChunk.getDefaultInstance());
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public com.google.bigtable.v2.ReadRowsResponse.CellChunk.Builder addChunksBuilder(int index) {
return getChunksFieldBuilder()
.addBuilder(
index, com.google.bigtable.v2.ReadRowsResponse.CellChunk.getDefaultInstance());
}
/**
*
*
*
* A collection of a row's contents as part of the read request.
*
*
* repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;
*/
public java.util.List
getChunksBuilderList() {
return getChunksFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.bigtable.v2.ReadRowsResponse.CellChunk,
com.google.bigtable.v2.ReadRowsResponse.CellChunk.Builder,
com.google.bigtable.v2.ReadRowsResponse.CellChunkOrBuilder>
getChunksFieldBuilder() {
if (chunksBuilder_ == null) {
chunksBuilder_ =
new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.bigtable.v2.ReadRowsResponse.CellChunk,
com.google.bigtable.v2.ReadRowsResponse.CellChunk.Builder,
com.google.bigtable.v2.ReadRowsResponse.CellChunkOrBuilder>(
chunks_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean());
chunks_ = null;
}
return chunksBuilder_;
}
private com.google.protobuf.ByteString lastScannedRowKey_ =
com.google.protobuf.ByteString.EMPTY;
/**
*
*
*
* Optionally the server might return the row key of the last row it
* has scanned. The client can use this to construct a more
* efficient retry request if needed: any row keys or portions of
* ranges less than this row key can be dropped from the request.
* This is primarily useful for cases where the server has read a
* lot of data that was filtered out since the last committed row
* key, allowing the client to skip that work on a retry.
*
*
* bytes last_scanned_row_key = 2;
*
* @return The lastScannedRowKey.
*/
@java.lang.Override
public com.google.protobuf.ByteString getLastScannedRowKey() {
return lastScannedRowKey_;
}
/**
*
*
*
* Optionally the server might return the row key of the last row it
* has scanned. The client can use this to construct a more
* efficient retry request if needed: any row keys or portions of
* ranges less than this row key can be dropped from the request.
* This is primarily useful for cases where the server has read a
* lot of data that was filtered out since the last committed row
* key, allowing the client to skip that work on a retry.
*
*
* bytes last_scanned_row_key = 2;
*
* @param value The lastScannedRowKey to set.
* @return This builder for chaining.
*/
public Builder setLastScannedRowKey(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
lastScannedRowKey_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Optionally the server might return the row key of the last row it
* has scanned. The client can use this to construct a more
* efficient retry request if needed: any row keys or portions of
* ranges less than this row key can be dropped from the request.
* This is primarily useful for cases where the server has read a
* lot of data that was filtered out since the last committed row
* key, allowing the client to skip that work on a retry.
*
*
* bytes last_scanned_row_key = 2;
*
* @return This builder for chaining.
*/
public Builder clearLastScannedRowKey() {
bitField0_ = (bitField0_ & ~0x00000002);
lastScannedRowKey_ = getDefaultInstance().getLastScannedRowKey();
onChanged();
return this;
}
private com.google.bigtable.v2.RequestStats requestStats_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.bigtable.v2.RequestStats,
com.google.bigtable.v2.RequestStats.Builder,
com.google.bigtable.v2.RequestStatsOrBuilder>
requestStatsBuilder_;
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*
* @return Whether the requestStats field is set.
*/
public boolean hasRequestStats() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*
* @return The requestStats.
*/
public com.google.bigtable.v2.RequestStats getRequestStats() {
if (requestStatsBuilder_ == null) {
return requestStats_ == null
? com.google.bigtable.v2.RequestStats.getDefaultInstance()
: requestStats_;
} else {
return requestStatsBuilder_.getMessage();
}
}
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*/
public Builder setRequestStats(com.google.bigtable.v2.RequestStats value) {
if (requestStatsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
requestStats_ = value;
} else {
requestStatsBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*/
public Builder setRequestStats(com.google.bigtable.v2.RequestStats.Builder builderForValue) {
if (requestStatsBuilder_ == null) {
requestStats_ = builderForValue.build();
} else {
requestStatsBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*/
public Builder mergeRequestStats(com.google.bigtable.v2.RequestStats value) {
if (requestStatsBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)
&& requestStats_ != null
&& requestStats_ != com.google.bigtable.v2.RequestStats.getDefaultInstance()) {
getRequestStatsBuilder().mergeFrom(value);
} else {
requestStats_ = value;
}
} else {
requestStatsBuilder_.mergeFrom(value);
}
if (requestStats_ != null) {
bitField0_ |= 0x00000004;
onChanged();
}
return this;
}
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*/
public Builder clearRequestStats() {
bitField0_ = (bitField0_ & ~0x00000004);
requestStats_ = null;
if (requestStatsBuilder_ != null) {
requestStatsBuilder_.dispose();
requestStatsBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*/
public com.google.bigtable.v2.RequestStats.Builder getRequestStatsBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getRequestStatsFieldBuilder().getBuilder();
}
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*/
public com.google.bigtable.v2.RequestStatsOrBuilder getRequestStatsOrBuilder() {
if (requestStatsBuilder_ != null) {
return requestStatsBuilder_.getMessageOrBuilder();
} else {
return requestStats_ == null
? com.google.bigtable.v2.RequestStats.getDefaultInstance()
: requestStats_;
}
}
/**
*
*
*
*
* If requested, provide enhanced query performance statistics. The semantics
* dictate:
* * request_stats is empty on every (streamed) response, except
* * request_stats has non-empty information after all chunks have been
* streamed, where the ReadRowsResponse message only contains
* request_stats.
* * For example, if a read request would have returned an empty
* response instead a single ReadRowsResponse is streamed with empty
* chunks and request_stats filled.
*
* Visually, response messages will stream as follows:
* ... -> {chunks: [...]} -> {chunks: [], request_stats: {...}}
* \______________________/ \________________________________/
* Primary response Trailer of RequestStats info
*
* Or if the read did not return any values:
* {chunks: [], request_stats: {...}}
* \________________________________/
* Trailer of RequestStats info
*
*
* .google.bigtable.v2.RequestStats request_stats = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.bigtable.v2.RequestStats,
com.google.bigtable.v2.RequestStats.Builder,
com.google.bigtable.v2.RequestStatsOrBuilder>
getRequestStatsFieldBuilder() {
if (requestStatsBuilder_ == null) {
requestStatsBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.bigtable.v2.RequestStats,
com.google.bigtable.v2.RequestStats.Builder,
com.google.bigtable.v2.RequestStatsOrBuilder>(
getRequestStats(), getParentForChildren(), isClean());
requestStats_ = null;
}
return requestStatsBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.bigtable.v2.ReadRowsResponse)
}
// @@protoc_insertion_point(class_scope:google.bigtable.v2.ReadRowsResponse)
private static final com.google.bigtable.v2.ReadRowsResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.bigtable.v2.ReadRowsResponse();
}
public static com.google.bigtable.v2.ReadRowsResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ReadRowsResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.bigtable.v2.ReadRowsResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}