com.google.bigtable.v2.RowRangeOrBuilder 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/data.proto
// Protobuf Java Version: 3.25.4
package com.google.bigtable.v2;
public interface RowRangeOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.bigtable.v2.RowRange)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Used when giving an inclusive lower bound for the range.
*
*
* bytes start_key_closed = 1;
*
* @return Whether the startKeyClosed field is set.
*/
boolean hasStartKeyClosed();
/**
*
*
*
* Used when giving an inclusive lower bound for the range.
*
*
* bytes start_key_closed = 1;
*
* @return The startKeyClosed.
*/
com.google.protobuf.ByteString getStartKeyClosed();
/**
*
*
*
* Used when giving an exclusive lower bound for the range.
*
*
* bytes start_key_open = 2;
*
* @return Whether the startKeyOpen field is set.
*/
boolean hasStartKeyOpen();
/**
*
*
*
* Used when giving an exclusive lower bound for the range.
*
*
* bytes start_key_open = 2;
*
* @return The startKeyOpen.
*/
com.google.protobuf.ByteString getStartKeyOpen();
/**
*
*
*
* Used when giving an exclusive upper bound for the range.
*
*
* bytes end_key_open = 3;
*
* @return Whether the endKeyOpen field is set.
*/
boolean hasEndKeyOpen();
/**
*
*
*
* Used when giving an exclusive upper bound for the range.
*
*
* bytes end_key_open = 3;
*
* @return The endKeyOpen.
*/
com.google.protobuf.ByteString getEndKeyOpen();
/**
*
*
*
* Used when giving an inclusive upper bound for the range.
*
*
* bytes end_key_closed = 4;
*
* @return Whether the endKeyClosed field is set.
*/
boolean hasEndKeyClosed();
/**
*
*
*
* Used when giving an inclusive upper bound for the range.
*
*
* bytes end_key_closed = 4;
*
* @return The endKeyClosed.
*/
com.google.protobuf.ByteString getEndKeyClosed();
com.google.bigtable.v2.RowRange.StartKeyCase getStartKeyCase();
com.google.bigtable.v2.RowRange.EndKeyCase getEndKeyCase();
}