All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.bigtable.v2.ValueRangeOrBuilder Maven / Gradle / Ivy

There is a newer version: 2.47.0
Show newest version
/*
 * 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 ValueRangeOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.bigtable.v2.ValueRange)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * Used when giving an inclusive lower bound for the range.
   * 
* * bytes start_value_closed = 1; * * @return Whether the startValueClosed field is set. */ boolean hasStartValueClosed(); /** * * *
   * Used when giving an inclusive lower bound for the range.
   * 
* * bytes start_value_closed = 1; * * @return The startValueClosed. */ com.google.protobuf.ByteString getStartValueClosed(); /** * * *
   * Used when giving an exclusive lower bound for the range.
   * 
* * bytes start_value_open = 2; * * @return Whether the startValueOpen field is set. */ boolean hasStartValueOpen(); /** * * *
   * Used when giving an exclusive lower bound for the range.
   * 
* * bytes start_value_open = 2; * * @return The startValueOpen. */ com.google.protobuf.ByteString getStartValueOpen(); /** * * *
   * Used when giving an inclusive upper bound for the range.
   * 
* * bytes end_value_closed = 3; * * @return Whether the endValueClosed field is set. */ boolean hasEndValueClosed(); /** * * *
   * Used when giving an inclusive upper bound for the range.
   * 
* * bytes end_value_closed = 3; * * @return The endValueClosed. */ com.google.protobuf.ByteString getEndValueClosed(); /** * * *
   * Used when giving an exclusive upper bound for the range.
   * 
* * bytes end_value_open = 4; * * @return Whether the endValueOpen field is set. */ boolean hasEndValueOpen(); /** * * *
   * Used when giving an exclusive upper bound for the range.
   * 
* * bytes end_value_open = 4; * * @return The endValueOpen. */ com.google.protobuf.ByteString getEndValueOpen(); com.google.bigtable.v2.ValueRange.StartValueCase getStartValueCase(); com.google.bigtable.v2.ValueRange.EndValueCase getEndValueCase(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy