grpc.store._StoreValueOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos Show documentation
Show all versions of client-protos Show documentation
Java protobuf protocols that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: store.proto
package grpc.store;
public interface _StoreValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:store._StoreValue)
com.google.protobuf.MessageOrBuilder {
/**
* bytes bytes_value = 1;
* @return Whether the bytesValue field is set.
*/
boolean hasBytesValue();
/**
* bytes bytes_value = 1;
* @return The bytesValue.
*/
com.google.protobuf.ByteString getBytesValue();
/**
* string string_value = 2;
* @return Whether the stringValue field is set.
*/
boolean hasStringValue();
/**
* string string_value = 2;
* @return The stringValue.
*/
java.lang.String getStringValue();
/**
* string string_value = 2;
* @return The bytes for stringValue.
*/
com.google.protobuf.ByteString
getStringValueBytes();
/**
* int64 integer_value = 3;
* @return Whether the integerValue field is set.
*/
boolean hasIntegerValue();
/**
* int64 integer_value = 3;
* @return The integerValue.
*/
long getIntegerValue();
/**
* double double_value = 4;
* @return Whether the doubleValue field is set.
*/
boolean hasDoubleValue();
/**
* double double_value = 4;
* @return The doubleValue.
*/
double getDoubleValue();
grpc.store._StoreValue.ValueCase getValueCase();
}