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

com.google.bigtable.v2.ColumnRangeOrBuilder 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 ColumnRangeOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.bigtable.v2.ColumnRange)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * The name of the column family within which this range falls.
   * 
* * string family_name = 1; * * @return The familyName. */ java.lang.String getFamilyName(); /** * * *
   * The name of the column family within which this range falls.
   * 
* * string family_name = 1; * * @return The bytes for familyName. */ com.google.protobuf.ByteString getFamilyNameBytes(); /** * * *
   * Used when giving an inclusive lower bound for the range.
   * 
* * bytes start_qualifier_closed = 2; * * @return Whether the startQualifierClosed field is set. */ boolean hasStartQualifierClosed(); /** * * *
   * Used when giving an inclusive lower bound for the range.
   * 
* * bytes start_qualifier_closed = 2; * * @return The startQualifierClosed. */ com.google.protobuf.ByteString getStartQualifierClosed(); /** * * *
   * Used when giving an exclusive lower bound for the range.
   * 
* * bytes start_qualifier_open = 3; * * @return Whether the startQualifierOpen field is set. */ boolean hasStartQualifierOpen(); /** * * *
   * Used when giving an exclusive lower bound for the range.
   * 
* * bytes start_qualifier_open = 3; * * @return The startQualifierOpen. */ com.google.protobuf.ByteString getStartQualifierOpen(); /** * * *
   * Used when giving an inclusive upper bound for the range.
   * 
* * bytes end_qualifier_closed = 4; * * @return Whether the endQualifierClosed field is set. */ boolean hasEndQualifierClosed(); /** * * *
   * Used when giving an inclusive upper bound for the range.
   * 
* * bytes end_qualifier_closed = 4; * * @return The endQualifierClosed. */ com.google.protobuf.ByteString getEndQualifierClosed(); /** * * *
   * Used when giving an exclusive upper bound for the range.
   * 
* * bytes end_qualifier_open = 5; * * @return Whether the endQualifierOpen field is set. */ boolean hasEndQualifierOpen(); /** * * *
   * Used when giving an exclusive upper bound for the range.
   * 
* * bytes end_qualifier_open = 5; * * @return The endQualifierOpen. */ com.google.protobuf.ByteString getEndQualifierOpen(); com.google.bigtable.v2.ColumnRange.StartQualifierCase getStartQualifierCase(); com.google.bigtable.v2.ColumnRange.EndQualifierCase getEndQualifierCase(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy