com.google.bigtable.v2.CheckAndMutateRowRequest 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;
/**
*
*
*
* Request message for Bigtable.CheckAndMutateRow.
*
*
* Protobuf type {@code google.bigtable.v2.CheckAndMutateRowRequest}
*/
public final class CheckAndMutateRowRequest extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.bigtable.v2.CheckAndMutateRowRequest)
CheckAndMutateRowRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use CheckAndMutateRowRequest.newBuilder() to construct.
private CheckAndMutateRowRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private CheckAndMutateRowRequest() {
tableName_ = "";
authorizedViewName_ = "";
appProfileId_ = "";
rowKey_ = com.google.protobuf.ByteString.EMPTY;
trueMutations_ = java.util.Collections.emptyList();
falseMutations_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new CheckAndMutateRowRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_CheckAndMutateRowRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_CheckAndMutateRowRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.bigtable.v2.CheckAndMutateRowRequest.class,
com.google.bigtable.v2.CheckAndMutateRowRequest.Builder.class);
}
private int bitField0_;
public static final int TABLE_NAME_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object tableName_ = "";
/**
*
*
*
* Optional. The unique name of the table to which the conditional mutation
* should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>`.
*
*
*
* string table_name = 1 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The tableName.
*/
@java.lang.Override
public java.lang.String getTableName() {
java.lang.Object ref = tableName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
tableName_ = s;
return s;
}
}
/**
*
*
*
* Optional. The unique name of the table to which the conditional mutation
* should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>`.
*
*
*
* string table_name = 1 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for tableName.
*/
@java.lang.Override
public com.google.protobuf.ByteString getTableNameBytes() {
java.lang.Object ref = tableName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
tableName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int AUTHORIZED_VIEW_NAME_FIELD_NUMBER = 9;
@SuppressWarnings("serial")
private volatile java.lang.Object authorizedViewName_ = "";
/**
*
*
*
* Optional. The unique name of the AuthorizedView to which the conditional
* mutation should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>/authorizedViews/<authorized_view>`.
*
*
*
* string authorized_view_name = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The authorizedViewName.
*/
@java.lang.Override
public java.lang.String getAuthorizedViewName() {
java.lang.Object ref = authorizedViewName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
authorizedViewName_ = s;
return s;
}
}
/**
*
*
*
* Optional. The unique name of the AuthorizedView to which the conditional
* mutation should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>/authorizedViews/<authorized_view>`.
*
*
*
* string authorized_view_name = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for authorizedViewName.
*/
@java.lang.Override
public com.google.protobuf.ByteString getAuthorizedViewNameBytes() {
java.lang.Object ref = authorizedViewName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
authorizedViewName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int APP_PROFILE_ID_FIELD_NUMBER = 7;
@SuppressWarnings("serial")
private volatile java.lang.Object appProfileId_ = "";
/**
*
*
*
* This value specifies routing for replication. If not specified, the
* "default" application profile will be used.
*
*
* string app_profile_id = 7;
*
* @return The appProfileId.
*/
@java.lang.Override
public java.lang.String getAppProfileId() {
java.lang.Object ref = appProfileId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
appProfileId_ = s;
return s;
}
}
/**
*
*
*
* This value specifies routing for replication. If not specified, the
* "default" application profile will be used.
*
*
* string app_profile_id = 7;
*
* @return The bytes for appProfileId.
*/
@java.lang.Override
public com.google.protobuf.ByteString getAppProfileIdBytes() {
java.lang.Object ref = appProfileId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
appProfileId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int ROW_KEY_FIELD_NUMBER = 2;
private com.google.protobuf.ByteString rowKey_ = com.google.protobuf.ByteString.EMPTY;
/**
*
*
*
* Required. The key of the row to which the conditional mutation should be
* applied.
*
*
* bytes row_key = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The rowKey.
*/
@java.lang.Override
public com.google.protobuf.ByteString getRowKey() {
return rowKey_;
}
public static final int PREDICATE_FILTER_FIELD_NUMBER = 6;
private com.google.bigtable.v2.RowFilter predicateFilter_;
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*
* @return Whether the predicateFilter field is set.
*/
@java.lang.Override
public boolean hasPredicateFilter() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*
* @return The predicateFilter.
*/
@java.lang.Override
public com.google.bigtable.v2.RowFilter getPredicateFilter() {
return predicateFilter_ == null
? com.google.bigtable.v2.RowFilter.getDefaultInstance()
: predicateFilter_;
}
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*/
@java.lang.Override
public com.google.bigtable.v2.RowFilterOrBuilder getPredicateFilterOrBuilder() {
return predicateFilter_ == null
? com.google.bigtable.v2.RowFilter.getDefaultInstance()
: predicateFilter_;
}
public static final int TRUE_MUTATIONS_FIELD_NUMBER = 4;
@SuppressWarnings("serial")
private java.util.List trueMutations_;
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
@java.lang.Override
public java.util.List getTrueMutationsList() {
return trueMutations_;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
@java.lang.Override
public java.util.List extends com.google.bigtable.v2.MutationOrBuilder>
getTrueMutationsOrBuilderList() {
return trueMutations_;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
@java.lang.Override
public int getTrueMutationsCount() {
return trueMutations_.size();
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
@java.lang.Override
public com.google.bigtable.v2.Mutation getTrueMutations(int index) {
return trueMutations_.get(index);
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
@java.lang.Override
public com.google.bigtable.v2.MutationOrBuilder getTrueMutationsOrBuilder(int index) {
return trueMutations_.get(index);
}
public static final int FALSE_MUTATIONS_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private java.util.List falseMutations_;
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
@java.lang.Override
public java.util.List getFalseMutationsList() {
return falseMutations_;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
@java.lang.Override
public java.util.List extends com.google.bigtable.v2.MutationOrBuilder>
getFalseMutationsOrBuilderList() {
return falseMutations_;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
@java.lang.Override
public int getFalseMutationsCount() {
return falseMutations_.size();
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
@java.lang.Override
public com.google.bigtable.v2.Mutation getFalseMutations(int index) {
return falseMutations_.get(index);
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
@java.lang.Override
public com.google.bigtable.v2.MutationOrBuilder getFalseMutationsOrBuilder(int index) {
return falseMutations_.get(index);
}
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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(tableName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, tableName_);
}
if (!rowKey_.isEmpty()) {
output.writeBytes(2, rowKey_);
}
for (int i = 0; i < trueMutations_.size(); i++) {
output.writeMessage(4, trueMutations_.get(i));
}
for (int i = 0; i < falseMutations_.size(); i++) {
output.writeMessage(5, falseMutations_.get(i));
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(6, getPredicateFilter());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(appProfileId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, appProfileId_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(authorizedViewName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 9, authorizedViewName_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(tableName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, tableName_);
}
if (!rowKey_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream.computeBytesSize(2, rowKey_);
}
for (int i = 0; i < trueMutations_.size(); i++) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, trueMutations_.get(i));
}
for (int i = 0; i < falseMutations_.size(); i++) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, falseMutations_.get(i));
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, getPredicateFilter());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(appProfileId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, appProfileId_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(authorizedViewName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, authorizedViewName_);
}
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.CheckAndMutateRowRequest)) {
return super.equals(obj);
}
com.google.bigtable.v2.CheckAndMutateRowRequest other =
(com.google.bigtable.v2.CheckAndMutateRowRequest) obj;
if (!getTableName().equals(other.getTableName())) return false;
if (!getAuthorizedViewName().equals(other.getAuthorizedViewName())) return false;
if (!getAppProfileId().equals(other.getAppProfileId())) return false;
if (!getRowKey().equals(other.getRowKey())) return false;
if (hasPredicateFilter() != other.hasPredicateFilter()) return false;
if (hasPredicateFilter()) {
if (!getPredicateFilter().equals(other.getPredicateFilter())) return false;
}
if (!getTrueMutationsList().equals(other.getTrueMutationsList())) return false;
if (!getFalseMutationsList().equals(other.getFalseMutationsList())) 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();
hash = (37 * hash) + TABLE_NAME_FIELD_NUMBER;
hash = (53 * hash) + getTableName().hashCode();
hash = (37 * hash) + AUTHORIZED_VIEW_NAME_FIELD_NUMBER;
hash = (53 * hash) + getAuthorizedViewName().hashCode();
hash = (37 * hash) + APP_PROFILE_ID_FIELD_NUMBER;
hash = (53 * hash) + getAppProfileId().hashCode();
hash = (37 * hash) + ROW_KEY_FIELD_NUMBER;
hash = (53 * hash) + getRowKey().hashCode();
if (hasPredicateFilter()) {
hash = (37 * hash) + PREDICATE_FILTER_FIELD_NUMBER;
hash = (53 * hash) + getPredicateFilter().hashCode();
}
if (getTrueMutationsCount() > 0) {
hash = (37 * hash) + TRUE_MUTATIONS_FIELD_NUMBER;
hash = (53 * hash) + getTrueMutationsList().hashCode();
}
if (getFalseMutationsCount() > 0) {
hash = (37 * hash) + FALSE_MUTATIONS_FIELD_NUMBER;
hash = (53 * hash) + getFalseMutationsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.bigtable.v2.CheckAndMutateRowRequest parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.bigtable.v2.CheckAndMutateRowRequest 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.CheckAndMutateRowRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.bigtable.v2.CheckAndMutateRowRequest 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.CheckAndMutateRowRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.bigtable.v2.CheckAndMutateRowRequest parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.bigtable.v2.CheckAndMutateRowRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.bigtable.v2.CheckAndMutateRowRequest 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.CheckAndMutateRowRequest parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.bigtable.v2.CheckAndMutateRowRequest 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.CheckAndMutateRowRequest parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.bigtable.v2.CheckAndMutateRowRequest 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.CheckAndMutateRowRequest 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;
}
/**
*
*
*
* Request message for Bigtable.CheckAndMutateRow.
*
*
* Protobuf type {@code google.bigtable.v2.CheckAndMutateRowRequest}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.bigtable.v2.CheckAndMutateRowRequest)
com.google.bigtable.v2.CheckAndMutateRowRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_CheckAndMutateRowRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_CheckAndMutateRowRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.bigtable.v2.CheckAndMutateRowRequest.class,
com.google.bigtable.v2.CheckAndMutateRowRequest.Builder.class);
}
// Construct using com.google.bigtable.v2.CheckAndMutateRowRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getPredicateFilterFieldBuilder();
getTrueMutationsFieldBuilder();
getFalseMutationsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
tableName_ = "";
authorizedViewName_ = "";
appProfileId_ = "";
rowKey_ = com.google.protobuf.ByteString.EMPTY;
predicateFilter_ = null;
if (predicateFilterBuilder_ != null) {
predicateFilterBuilder_.dispose();
predicateFilterBuilder_ = null;
}
if (trueMutationsBuilder_ == null) {
trueMutations_ = java.util.Collections.emptyList();
} else {
trueMutations_ = null;
trueMutationsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000020);
if (falseMutationsBuilder_ == null) {
falseMutations_ = java.util.Collections.emptyList();
} else {
falseMutations_ = null;
falseMutationsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000040);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.bigtable.v2.BigtableProto
.internal_static_google_bigtable_v2_CheckAndMutateRowRequest_descriptor;
}
@java.lang.Override
public com.google.bigtable.v2.CheckAndMutateRowRequest getDefaultInstanceForType() {
return com.google.bigtable.v2.CheckAndMutateRowRequest.getDefaultInstance();
}
@java.lang.Override
public com.google.bigtable.v2.CheckAndMutateRowRequest build() {
com.google.bigtable.v2.CheckAndMutateRowRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.bigtable.v2.CheckAndMutateRowRequest buildPartial() {
com.google.bigtable.v2.CheckAndMutateRowRequest result =
new com.google.bigtable.v2.CheckAndMutateRowRequest(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartialRepeatedFields(
com.google.bigtable.v2.CheckAndMutateRowRequest result) {
if (trueMutationsBuilder_ == null) {
if (((bitField0_ & 0x00000020) != 0)) {
trueMutations_ = java.util.Collections.unmodifiableList(trueMutations_);
bitField0_ = (bitField0_ & ~0x00000020);
}
result.trueMutations_ = trueMutations_;
} else {
result.trueMutations_ = trueMutationsBuilder_.build();
}
if (falseMutationsBuilder_ == null) {
if (((bitField0_ & 0x00000040) != 0)) {
falseMutations_ = java.util.Collections.unmodifiableList(falseMutations_);
bitField0_ = (bitField0_ & ~0x00000040);
}
result.falseMutations_ = falseMutations_;
} else {
result.falseMutations_ = falseMutationsBuilder_.build();
}
}
private void buildPartial0(com.google.bigtable.v2.CheckAndMutateRowRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.tableName_ = tableName_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.authorizedViewName_ = authorizedViewName_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.appProfileId_ = appProfileId_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.rowKey_ = rowKey_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000010) != 0)) {
result.predicateFilter_ =
predicateFilterBuilder_ == null ? predicateFilter_ : predicateFilterBuilder_.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.CheckAndMutateRowRequest) {
return mergeFrom((com.google.bigtable.v2.CheckAndMutateRowRequest) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.bigtable.v2.CheckAndMutateRowRequest other) {
if (other == com.google.bigtable.v2.CheckAndMutateRowRequest.getDefaultInstance())
return this;
if (!other.getTableName().isEmpty()) {
tableName_ = other.tableName_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getAuthorizedViewName().isEmpty()) {
authorizedViewName_ = other.authorizedViewName_;
bitField0_ |= 0x00000002;
onChanged();
}
if (!other.getAppProfileId().isEmpty()) {
appProfileId_ = other.appProfileId_;
bitField0_ |= 0x00000004;
onChanged();
}
if (other.getRowKey() != com.google.protobuf.ByteString.EMPTY) {
setRowKey(other.getRowKey());
}
if (other.hasPredicateFilter()) {
mergePredicateFilter(other.getPredicateFilter());
}
if (trueMutationsBuilder_ == null) {
if (!other.trueMutations_.isEmpty()) {
if (trueMutations_.isEmpty()) {
trueMutations_ = other.trueMutations_;
bitField0_ = (bitField0_ & ~0x00000020);
} else {
ensureTrueMutationsIsMutable();
trueMutations_.addAll(other.trueMutations_);
}
onChanged();
}
} else {
if (!other.trueMutations_.isEmpty()) {
if (trueMutationsBuilder_.isEmpty()) {
trueMutationsBuilder_.dispose();
trueMutationsBuilder_ = null;
trueMutations_ = other.trueMutations_;
bitField0_ = (bitField0_ & ~0x00000020);
trueMutationsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getTrueMutationsFieldBuilder()
: null;
} else {
trueMutationsBuilder_.addAllMessages(other.trueMutations_);
}
}
}
if (falseMutationsBuilder_ == null) {
if (!other.falseMutations_.isEmpty()) {
if (falseMutations_.isEmpty()) {
falseMutations_ = other.falseMutations_;
bitField0_ = (bitField0_ & ~0x00000040);
} else {
ensureFalseMutationsIsMutable();
falseMutations_.addAll(other.falseMutations_);
}
onChanged();
}
} else {
if (!other.falseMutations_.isEmpty()) {
if (falseMutationsBuilder_.isEmpty()) {
falseMutationsBuilder_.dispose();
falseMutationsBuilder_ = null;
falseMutations_ = other.falseMutations_;
bitField0_ = (bitField0_ & ~0x00000040);
falseMutationsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getFalseMutationsFieldBuilder()
: null;
} else {
falseMutationsBuilder_.addAllMessages(other.falseMutations_);
}
}
}
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:
{
tableName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
rowKey_ = input.readBytes();
bitField0_ |= 0x00000008;
break;
} // case 18
case 34:
{
com.google.bigtable.v2.Mutation m =
input.readMessage(com.google.bigtable.v2.Mutation.parser(), extensionRegistry);
if (trueMutationsBuilder_ == null) {
ensureTrueMutationsIsMutable();
trueMutations_.add(m);
} else {
trueMutationsBuilder_.addMessage(m);
}
break;
} // case 34
case 42:
{
com.google.bigtable.v2.Mutation m =
input.readMessage(com.google.bigtable.v2.Mutation.parser(), extensionRegistry);
if (falseMutationsBuilder_ == null) {
ensureFalseMutationsIsMutable();
falseMutations_.add(m);
} else {
falseMutationsBuilder_.addMessage(m);
}
break;
} // case 42
case 50:
{
input.readMessage(getPredicateFilterFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000010;
break;
} // case 50
case 58:
{
appProfileId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000004;
break;
} // case 58
case 74:
{
authorizedViewName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 74
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.lang.Object tableName_ = "";
/**
*
*
*
* Optional. The unique name of the table to which the conditional mutation
* should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>`.
*
*
*
* string table_name = 1 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The tableName.
*/
public java.lang.String getTableName() {
java.lang.Object ref = tableName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
tableName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Optional. The unique name of the table to which the conditional mutation
* should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>`.
*
*
*
* string table_name = 1 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for tableName.
*/
public com.google.protobuf.ByteString getTableNameBytes() {
java.lang.Object ref = tableName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
tableName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Optional. The unique name of the table to which the conditional mutation
* should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>`.
*
*
*
* string table_name = 1 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @param value The tableName to set.
* @return This builder for chaining.
*/
public Builder setTableName(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
tableName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Optional. The unique name of the table to which the conditional mutation
* should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>`.
*
*
*
* string table_name = 1 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return This builder for chaining.
*/
public Builder clearTableName() {
tableName_ = getDefaultInstance().getTableName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* Optional. The unique name of the table to which the conditional mutation
* should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>`.
*
*
*
* string table_name = 1 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @param value The bytes for tableName to set.
* @return This builder for chaining.
*/
public Builder setTableNameBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
tableName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object authorizedViewName_ = "";
/**
*
*
*
* Optional. The unique name of the AuthorizedView to which the conditional
* mutation should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>/authorizedViews/<authorized_view>`.
*
*
*
* string authorized_view_name = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The authorizedViewName.
*/
public java.lang.String getAuthorizedViewName() {
java.lang.Object ref = authorizedViewName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
authorizedViewName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Optional. The unique name of the AuthorizedView to which the conditional
* mutation should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>/authorizedViews/<authorized_view>`.
*
*
*
* string authorized_view_name = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for authorizedViewName.
*/
public com.google.protobuf.ByteString getAuthorizedViewNameBytes() {
java.lang.Object ref = authorizedViewName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
authorizedViewName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Optional. The unique name of the AuthorizedView to which the conditional
* mutation should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>/authorizedViews/<authorized_view>`.
*
*
*
* string authorized_view_name = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @param value The authorizedViewName to set.
* @return This builder for chaining.
*/
public Builder setAuthorizedViewName(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
authorizedViewName_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Optional. The unique name of the AuthorizedView to which the conditional
* mutation should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>/authorizedViews/<authorized_view>`.
*
*
*
* string authorized_view_name = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return This builder for chaining.
*/
public Builder clearAuthorizedViewName() {
authorizedViewName_ = getDefaultInstance().getAuthorizedViewName();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
*
*
* Optional. The unique name of the AuthorizedView to which the conditional
* mutation should be applied.
*
* Values are of the form
* `projects/<project>/instances/<instance>/tables/<table>/authorizedViews/<authorized_view>`.
*
*
*
* string authorized_view_name = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @param value The bytes for authorizedViewName to set.
* @return This builder for chaining.
*/
public Builder setAuthorizedViewNameBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
authorizedViewName_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private java.lang.Object appProfileId_ = "";
/**
*
*
*
* This value specifies routing for replication. If not specified, the
* "default" application profile will be used.
*
*
* string app_profile_id = 7;
*
* @return The appProfileId.
*/
public java.lang.String getAppProfileId() {
java.lang.Object ref = appProfileId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
appProfileId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* This value specifies routing for replication. If not specified, the
* "default" application profile will be used.
*
*
* string app_profile_id = 7;
*
* @return The bytes for appProfileId.
*/
public com.google.protobuf.ByteString getAppProfileIdBytes() {
java.lang.Object ref = appProfileId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
appProfileId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* This value specifies routing for replication. If not specified, the
* "default" application profile will be used.
*
*
* string app_profile_id = 7;
*
* @param value The appProfileId to set.
* @return This builder for chaining.
*/
public Builder setAppProfileId(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
appProfileId_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* This value specifies routing for replication. If not specified, the
* "default" application profile will be used.
*
*
* string app_profile_id = 7;
*
* @return This builder for chaining.
*/
public Builder clearAppProfileId() {
appProfileId_ = getDefaultInstance().getAppProfileId();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
return this;
}
/**
*
*
*
* This value specifies routing for replication. If not specified, the
* "default" application profile will be used.
*
*
* string app_profile_id = 7;
*
* @param value The bytes for appProfileId to set.
* @return This builder for chaining.
*/
public Builder setAppProfileIdBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
appProfileId_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
private com.google.protobuf.ByteString rowKey_ = com.google.protobuf.ByteString.EMPTY;
/**
*
*
*
* Required. The key of the row to which the conditional mutation should be
* applied.
*
*
* bytes row_key = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The rowKey.
*/
@java.lang.Override
public com.google.protobuf.ByteString getRowKey() {
return rowKey_;
}
/**
*
*
*
* Required. The key of the row to which the conditional mutation should be
* applied.
*
*
* bytes row_key = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @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_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Required. The key of the row to which the conditional mutation should be
* applied.
*
*
* bytes row_key = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return This builder for chaining.
*/
public Builder clearRowKey() {
bitField0_ = (bitField0_ & ~0x00000008);
rowKey_ = getDefaultInstance().getRowKey();
onChanged();
return this;
}
private com.google.bigtable.v2.RowFilter predicateFilter_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.bigtable.v2.RowFilter,
com.google.bigtable.v2.RowFilter.Builder,
com.google.bigtable.v2.RowFilterOrBuilder>
predicateFilterBuilder_;
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*
* @return Whether the predicateFilter field is set.
*/
public boolean hasPredicateFilter() {
return ((bitField0_ & 0x00000010) != 0);
}
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*
* @return The predicateFilter.
*/
public com.google.bigtable.v2.RowFilter getPredicateFilter() {
if (predicateFilterBuilder_ == null) {
return predicateFilter_ == null
? com.google.bigtable.v2.RowFilter.getDefaultInstance()
: predicateFilter_;
} else {
return predicateFilterBuilder_.getMessage();
}
}
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*/
public Builder setPredicateFilter(com.google.bigtable.v2.RowFilter value) {
if (predicateFilterBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
predicateFilter_ = value;
} else {
predicateFilterBuilder_.setMessage(value);
}
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*/
public Builder setPredicateFilter(com.google.bigtable.v2.RowFilter.Builder builderForValue) {
if (predicateFilterBuilder_ == null) {
predicateFilter_ = builderForValue.build();
} else {
predicateFilterBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*/
public Builder mergePredicateFilter(com.google.bigtable.v2.RowFilter value) {
if (predicateFilterBuilder_ == null) {
if (((bitField0_ & 0x00000010) != 0)
&& predicateFilter_ != null
&& predicateFilter_ != com.google.bigtable.v2.RowFilter.getDefaultInstance()) {
getPredicateFilterBuilder().mergeFrom(value);
} else {
predicateFilter_ = value;
}
} else {
predicateFilterBuilder_.mergeFrom(value);
}
if (predicateFilter_ != null) {
bitField0_ |= 0x00000010;
onChanged();
}
return this;
}
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*/
public Builder clearPredicateFilter() {
bitField0_ = (bitField0_ & ~0x00000010);
predicateFilter_ = null;
if (predicateFilterBuilder_ != null) {
predicateFilterBuilder_.dispose();
predicateFilterBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*/
public com.google.bigtable.v2.RowFilter.Builder getPredicateFilterBuilder() {
bitField0_ |= 0x00000010;
onChanged();
return getPredicateFilterFieldBuilder().getBuilder();
}
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*/
public com.google.bigtable.v2.RowFilterOrBuilder getPredicateFilterOrBuilder() {
if (predicateFilterBuilder_ != null) {
return predicateFilterBuilder_.getMessageOrBuilder();
} else {
return predicateFilter_ == null
? com.google.bigtable.v2.RowFilter.getDefaultInstance()
: predicateFilter_;
}
}
/**
*
*
*
* The filter to be applied to the contents of the specified row. Depending
* on whether or not any results are yielded, either `true_mutations` or
* `false_mutations` will be executed. If unset, checks that the row contains
* any values at all.
*
*
* .google.bigtable.v2.RowFilter predicate_filter = 6;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.bigtable.v2.RowFilter,
com.google.bigtable.v2.RowFilter.Builder,
com.google.bigtable.v2.RowFilterOrBuilder>
getPredicateFilterFieldBuilder() {
if (predicateFilterBuilder_ == null) {
predicateFilterBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.bigtable.v2.RowFilter,
com.google.bigtable.v2.RowFilter.Builder,
com.google.bigtable.v2.RowFilterOrBuilder>(
getPredicateFilter(), getParentForChildren(), isClean());
predicateFilter_ = null;
}
return predicateFilterBuilder_;
}
private java.util.List trueMutations_ =
java.util.Collections.emptyList();
private void ensureTrueMutationsIsMutable() {
if (!((bitField0_ & 0x00000020) != 0)) {
trueMutations_ = new java.util.ArrayList(trueMutations_);
bitField0_ |= 0x00000020;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.bigtable.v2.Mutation,
com.google.bigtable.v2.Mutation.Builder,
com.google.bigtable.v2.MutationOrBuilder>
trueMutationsBuilder_;
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public java.util.List getTrueMutationsList() {
if (trueMutationsBuilder_ == null) {
return java.util.Collections.unmodifiableList(trueMutations_);
} else {
return trueMutationsBuilder_.getMessageList();
}
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public int getTrueMutationsCount() {
if (trueMutationsBuilder_ == null) {
return trueMutations_.size();
} else {
return trueMutationsBuilder_.getCount();
}
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public com.google.bigtable.v2.Mutation getTrueMutations(int index) {
if (trueMutationsBuilder_ == null) {
return trueMutations_.get(index);
} else {
return trueMutationsBuilder_.getMessage(index);
}
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public Builder setTrueMutations(int index, com.google.bigtable.v2.Mutation value) {
if (trueMutationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureTrueMutationsIsMutable();
trueMutations_.set(index, value);
onChanged();
} else {
trueMutationsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public Builder setTrueMutations(
int index, com.google.bigtable.v2.Mutation.Builder builderForValue) {
if (trueMutationsBuilder_ == null) {
ensureTrueMutationsIsMutable();
trueMutations_.set(index, builderForValue.build());
onChanged();
} else {
trueMutationsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public Builder addTrueMutations(com.google.bigtable.v2.Mutation value) {
if (trueMutationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureTrueMutationsIsMutable();
trueMutations_.add(value);
onChanged();
} else {
trueMutationsBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public Builder addTrueMutations(int index, com.google.bigtable.v2.Mutation value) {
if (trueMutationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureTrueMutationsIsMutable();
trueMutations_.add(index, value);
onChanged();
} else {
trueMutationsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public Builder addTrueMutations(com.google.bigtable.v2.Mutation.Builder builderForValue) {
if (trueMutationsBuilder_ == null) {
ensureTrueMutationsIsMutable();
trueMutations_.add(builderForValue.build());
onChanged();
} else {
trueMutationsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public Builder addTrueMutations(
int index, com.google.bigtable.v2.Mutation.Builder builderForValue) {
if (trueMutationsBuilder_ == null) {
ensureTrueMutationsIsMutable();
trueMutations_.add(index, builderForValue.build());
onChanged();
} else {
trueMutationsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public Builder addAllTrueMutations(
java.lang.Iterable extends com.google.bigtable.v2.Mutation> values) {
if (trueMutationsBuilder_ == null) {
ensureTrueMutationsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, trueMutations_);
onChanged();
} else {
trueMutationsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public Builder clearTrueMutations() {
if (trueMutationsBuilder_ == null) {
trueMutations_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000020);
onChanged();
} else {
trueMutationsBuilder_.clear();
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public Builder removeTrueMutations(int index) {
if (trueMutationsBuilder_ == null) {
ensureTrueMutationsIsMutable();
trueMutations_.remove(index);
onChanged();
} else {
trueMutationsBuilder_.remove(index);
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public com.google.bigtable.v2.Mutation.Builder getTrueMutationsBuilder(int index) {
return getTrueMutationsFieldBuilder().getBuilder(index);
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public com.google.bigtable.v2.MutationOrBuilder getTrueMutationsOrBuilder(int index) {
if (trueMutationsBuilder_ == null) {
return trueMutations_.get(index);
} else {
return trueMutationsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public java.util.List extends com.google.bigtable.v2.MutationOrBuilder>
getTrueMutationsOrBuilderList() {
if (trueMutationsBuilder_ != null) {
return trueMutationsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(trueMutations_);
}
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public com.google.bigtable.v2.Mutation.Builder addTrueMutationsBuilder() {
return getTrueMutationsFieldBuilder()
.addBuilder(com.google.bigtable.v2.Mutation.getDefaultInstance());
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public com.google.bigtable.v2.Mutation.Builder addTrueMutationsBuilder(int index) {
return getTrueMutationsFieldBuilder()
.addBuilder(index, com.google.bigtable.v2.Mutation.getDefaultInstance());
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* yields at least one cell when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `false_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
public java.util.List getTrueMutationsBuilderList() {
return getTrueMutationsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.bigtable.v2.Mutation,
com.google.bigtable.v2.Mutation.Builder,
com.google.bigtable.v2.MutationOrBuilder>
getTrueMutationsFieldBuilder() {
if (trueMutationsBuilder_ == null) {
trueMutationsBuilder_ =
new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.bigtable.v2.Mutation,
com.google.bigtable.v2.Mutation.Builder,
com.google.bigtable.v2.MutationOrBuilder>(
trueMutations_,
((bitField0_ & 0x00000020) != 0),
getParentForChildren(),
isClean());
trueMutations_ = null;
}
return trueMutationsBuilder_;
}
private java.util.List falseMutations_ =
java.util.Collections.emptyList();
private void ensureFalseMutationsIsMutable() {
if (!((bitField0_ & 0x00000040) != 0)) {
falseMutations_ = new java.util.ArrayList(falseMutations_);
bitField0_ |= 0x00000040;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.bigtable.v2.Mutation,
com.google.bigtable.v2.Mutation.Builder,
com.google.bigtable.v2.MutationOrBuilder>
falseMutationsBuilder_;
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public java.util.List getFalseMutationsList() {
if (falseMutationsBuilder_ == null) {
return java.util.Collections.unmodifiableList(falseMutations_);
} else {
return falseMutationsBuilder_.getMessageList();
}
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public int getFalseMutationsCount() {
if (falseMutationsBuilder_ == null) {
return falseMutations_.size();
} else {
return falseMutationsBuilder_.getCount();
}
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public com.google.bigtable.v2.Mutation getFalseMutations(int index) {
if (falseMutationsBuilder_ == null) {
return falseMutations_.get(index);
} else {
return falseMutationsBuilder_.getMessage(index);
}
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public Builder setFalseMutations(int index, com.google.bigtable.v2.Mutation value) {
if (falseMutationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFalseMutationsIsMutable();
falseMutations_.set(index, value);
onChanged();
} else {
falseMutationsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public Builder setFalseMutations(
int index, com.google.bigtable.v2.Mutation.Builder builderForValue) {
if (falseMutationsBuilder_ == null) {
ensureFalseMutationsIsMutable();
falseMutations_.set(index, builderForValue.build());
onChanged();
} else {
falseMutationsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public Builder addFalseMutations(com.google.bigtable.v2.Mutation value) {
if (falseMutationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFalseMutationsIsMutable();
falseMutations_.add(value);
onChanged();
} else {
falseMutationsBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public Builder addFalseMutations(int index, com.google.bigtable.v2.Mutation value) {
if (falseMutationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFalseMutationsIsMutable();
falseMutations_.add(index, value);
onChanged();
} else {
falseMutationsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public Builder addFalseMutations(com.google.bigtable.v2.Mutation.Builder builderForValue) {
if (falseMutationsBuilder_ == null) {
ensureFalseMutationsIsMutable();
falseMutations_.add(builderForValue.build());
onChanged();
} else {
falseMutationsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public Builder addFalseMutations(
int index, com.google.bigtable.v2.Mutation.Builder builderForValue) {
if (falseMutationsBuilder_ == null) {
ensureFalseMutationsIsMutable();
falseMutations_.add(index, builderForValue.build());
onChanged();
} else {
falseMutationsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public Builder addAllFalseMutations(
java.lang.Iterable extends com.google.bigtable.v2.Mutation> values) {
if (falseMutationsBuilder_ == null) {
ensureFalseMutationsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, falseMutations_);
onChanged();
} else {
falseMutationsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public Builder clearFalseMutations() {
if (falseMutationsBuilder_ == null) {
falseMutations_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000040);
onChanged();
} else {
falseMutationsBuilder_.clear();
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public Builder removeFalseMutations(int index) {
if (falseMutationsBuilder_ == null) {
ensureFalseMutationsIsMutable();
falseMutations_.remove(index);
onChanged();
} else {
falseMutationsBuilder_.remove(index);
}
return this;
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public com.google.bigtable.v2.Mutation.Builder getFalseMutationsBuilder(int index) {
return getFalseMutationsFieldBuilder().getBuilder(index);
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public com.google.bigtable.v2.MutationOrBuilder getFalseMutationsOrBuilder(int index) {
if (falseMutationsBuilder_ == null) {
return falseMutations_.get(index);
} else {
return falseMutationsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public java.util.List extends com.google.bigtable.v2.MutationOrBuilder>
getFalseMutationsOrBuilderList() {
if (falseMutationsBuilder_ != null) {
return falseMutationsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(falseMutations_);
}
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public com.google.bigtable.v2.Mutation.Builder addFalseMutationsBuilder() {
return getFalseMutationsFieldBuilder()
.addBuilder(com.google.bigtable.v2.Mutation.getDefaultInstance());
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public com.google.bigtable.v2.Mutation.Builder addFalseMutationsBuilder(int index) {
return getFalseMutationsFieldBuilder()
.addBuilder(index, com.google.bigtable.v2.Mutation.getDefaultInstance());
}
/**
*
*
*
* Changes to be atomically applied to the specified row if `predicate_filter`
* does not yield any cells when applied to `row_key`. Entries are applied in
* order, meaning that earlier mutations can be masked by later ones.
* Must contain at least one entry if `true_mutations` is empty, and at most
* 100000.
*
*
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
public java.util.List getFalseMutationsBuilderList() {
return getFalseMutationsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.bigtable.v2.Mutation,
com.google.bigtable.v2.Mutation.Builder,
com.google.bigtable.v2.MutationOrBuilder>
getFalseMutationsFieldBuilder() {
if (falseMutationsBuilder_ == null) {
falseMutationsBuilder_ =
new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.bigtable.v2.Mutation,
com.google.bigtable.v2.Mutation.Builder,
com.google.bigtable.v2.MutationOrBuilder>(
falseMutations_,
((bitField0_ & 0x00000040) != 0),
getParentForChildren(),
isClean());
falseMutations_ = null;
}
return falseMutationsBuilder_;
}
@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.CheckAndMutateRowRequest)
}
// @@protoc_insertion_point(class_scope:google.bigtable.v2.CheckAndMutateRowRequest)
private static final com.google.bigtable.v2.CheckAndMutateRowRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.bigtable.v2.CheckAndMutateRowRequest();
}
public static com.google.bigtable.v2.CheckAndMutateRowRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public CheckAndMutateRowRequest 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.CheckAndMutateRowRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}