nl.topicus.jdbc.shaded.com.google.protobuf.ValueOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spanner-jdbc Show documentation
Show all versions of spanner-jdbc Show documentation
JDBC Driver for Google Cloud Spanner
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/protobuf/struct.proto
package nl.topicus.jdbc.shaded.com.google.protobuf;
public interface ValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.protobuf.Value)
nl.topicus.jdbc.shaded.com.google.protobuf.MessageOrBuilder {
/**
*
* Represents a null value.
*
*
* .google.protobuf.NullValue null_value = 1;
*/
int getNullValueValue();
/**
*
* Represents a null value.
*
*
* .google.protobuf.NullValue null_value = 1;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.NullValue getNullValue();
/**
*
* Represents a double value.
*
*
* double number_value = 2;
*/
double getNumberValue();
/**
*
* Represents a string value.
*
*
* string string_value = 3;
*/
java.lang.String getStringValue();
/**
*
* Represents a string value.
*
*
* string string_value = 3;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.ByteString
getStringValueBytes();
/**
*
* Represents a boolean value.
*
*
* bool bool_value = 4;
*/
boolean getBoolValue();
/**
*
* Represents a structured value.
*
*
* .google.protobuf.Struct struct_value = 5;
*/
boolean hasStructValue();
/**
*
* Represents a structured value.
*
*
* .google.protobuf.Struct struct_value = 5;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.Struct getStructValue();
/**
*
* Represents a structured value.
*
*
* .google.protobuf.Struct struct_value = 5;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.StructOrBuilder getStructValueOrBuilder();
/**
*
* Represents a repeated `Value`.
*
*
* .google.protobuf.ListValue list_value = 6;
*/
boolean hasListValue();
/**
*
* Represents a repeated `Value`.
*
*
* .google.protobuf.ListValue list_value = 6;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.ListValue getListValue();
/**
*
* Represents a repeated `Value`.
*
*
* .google.protobuf.ListValue list_value = 6;
*/
nl.topicus.jdbc.shaded.com.google.protobuf.ListValueOrBuilder getListValueOrBuilder();
public nl.topicus.jdbc.shaded.com.google.protobuf.Value.KindCase getKindCase();
}