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

grpc.store._StoreValueOrBuilder Maven / Gradle / Ivy

There is a newer version: 0.119.4
Show newest version
// 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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy