com.google.bigtable.v2.ValueOrBuilder Maven / Gradle / Ivy
/*
* 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.2
package com.google.bigtable.v2;
public interface ValueOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.bigtable.v2.Value)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Represents a raw byte sequence with no type information.
* The `type` field must be omitted.
*
*
* bytes raw_value = 8;
*
* @return Whether the rawValue field is set.
*/
boolean hasRawValue();
/**
*
*
*
* Represents a raw byte sequence with no type information.
* The `type` field must be omitted.
*
*
* bytes raw_value = 8;
*
* @return The rawValue.
*/
com.google.protobuf.ByteString getRawValue();
/**
*
*
*
* Represents a raw cell timestamp with no type information.
* The `type` field must be omitted.
*
*
* int64 raw_timestamp_micros = 9;
*
* @return Whether the rawTimestampMicros field is set.
*/
boolean hasRawTimestampMicros();
/**
*
*
*
* Represents a raw cell timestamp with no type information.
* The `type` field must be omitted.
*
*
* int64 raw_timestamp_micros = 9;
*
* @return The rawTimestampMicros.
*/
long getRawTimestampMicros();
/**
*
*
*
* Represents a typed value transported as an integer.
* Default type for writes: `Int64`
*
*
* int64 int_value = 6;
*
* @return Whether the intValue field is set.
*/
boolean hasIntValue();
/**
*
*
*
* Represents a typed value transported as an integer.
* Default type for writes: `Int64`
*
*
* int64 int_value = 6;
*
* @return The intValue.
*/
long getIntValue();
com.google.bigtable.v2.Value.KindCase getKindCase();
}