com.google.bigtable.v2.CellOrBuilder 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 CellOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.bigtable.v2.Cell)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* 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.
*
*
* int64 timestamp_micros = 1;
*
* @return The timestampMicros.
*/
long getTimestampMicros();
/**
*
*
*
* The value stored in the cell.
* May contain any byte string, including the empty string, up to 100MiB in
* length.
*
*
* bytes value = 2;
*
* @return The value.
*/
com.google.protobuf.ByteString getValue();
/**
*
*
*
* Labels applied to the cell by a [RowFilter][google.bigtable.v2.RowFilter].
*
*
* repeated string labels = 3;
*
* @return A list containing the labels.
*/
java.util.List getLabelsList();
/**
*
*
*
* Labels applied to the cell by a [RowFilter][google.bigtable.v2.RowFilter].
*
*
* repeated string labels = 3;
*
* @return The count of labels.
*/
int getLabelsCount();
/**
*
*
*
* Labels applied to the cell by a [RowFilter][google.bigtable.v2.RowFilter].
*
*
* repeated string labels = 3;
*
* @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].
*
*
* repeated string labels = 3;
*
* @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);
}