Class SqlResultValue (0.42.0)

public final class SqlResultValue extends GeneratedMessageV3 implements SqlResultValueOrBuilder

A single value in a row from a sql result.

Protobuf type google.cloud.alloydb.v1.SqlResultValue

Static Fields

NULL_VALUE_FIELD_NUMBER

public static final int NULL_VALUE_FIELD_NUMBER
Field Value
Type Description
int

VALUE_FIELD_NUMBER

public static final int VALUE_FIELD_NUMBER
Field Value
Type Description
int

Static Methods

getDefaultInstance()

public static SqlResultValue getDefaultInstance()
Returns
Type Description
SqlResultValue

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

newBuilder()

public static SqlResultValue.Builder newBuilder()
Returns
Type Description
SqlResultValue.Builder

newBuilder(SqlResultValue prototype)

public static SqlResultValue.Builder newBuilder(SqlResultValue prototype)
Parameter
Name Description
prototype SqlResultValue
Returns
Type Description
SqlResultValue.Builder

parseDelimitedFrom(InputStream input)

public static SqlResultValue parseDelimitedFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
SqlResultValue
Exceptions
Type Description
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static SqlResultValue parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SqlResultValue
Exceptions
Type Description
IOException

parseFrom(byte[] data)

public static SqlResultValue parseFrom(byte[] data)
Parameter
Name Description
data byte[]
Returns
Type Description
SqlResultValue
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static SqlResultValue parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data byte[]
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SqlResultValue
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data)

public static SqlResultValue parseFrom(ByteString data)
Parameter
Name Description
data ByteString
Returns
Type Description
SqlResultValue
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static SqlResultValue parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteString
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SqlResultValue
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static SqlResultValue parseFrom(CodedInputStream input)
Parameter
Name Description
input CodedInputStream
Returns
Type Description
SqlResultValue
Exceptions
Type Description
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static SqlResultValue parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SqlResultValue
Exceptions
Type Description
IOException

parseFrom(InputStream input)

public static SqlResultValue parseFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
SqlResultValue
Exceptions
Type Description
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static SqlResultValue parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SqlResultValue
Exceptions
Type Description
IOException

parseFrom(ByteBuffer data)

public static SqlResultValue parseFrom(ByteBuffer data)
Parameter
Name Description
data ByteBuffer
Returns
Type Description
SqlResultValue
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static SqlResultValue parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteBuffer
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SqlResultValue
Exceptions
Type Description
InvalidProtocolBufferException

parser()

public static Parser<SqlResultValue> parser()
Returns
Type Description
Parser<SqlResultValue>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
Name Description
obj Object
Returns
Type Description
boolean
Overrides

getDefaultInstanceForType()

public SqlResultValue getDefaultInstanceForType()
Returns
Type Description
SqlResultValue

getNullValue()

public boolean getNullValue()

Set to true if cell value is null.

optional bool null_value = 2;

Returns
Type Description
boolean

The nullValue.

getParserForType()

public Parser<SqlResultValue> getParserForType()
Returns
Type Description
Parser<SqlResultValue>
Overrides

getSerializedSize()

public int getSerializedSize()
Returns
Type Description
int
Overrides

getValue()

public String getValue()

The cell value represented in string format. Timestamps are converted to string using RFC3339Nano format.

optional string value = 1;

Returns
Type Description
String

The value.

getValueBytes()

public ByteString getValueBytes()

The cell value represented in string format. Timestamps are converted to string using RFC3339Nano format.

optional string value = 1;

Returns
Type Description
ByteString

The bytes for value.

hasNullValue()

public boolean hasNullValue()

Set to true if cell value is null.

optional bool null_value = 2;

Returns
Type Description
boolean

Whether the nullValue field is set.

hasValue()

public boolean hasValue()

The cell value represented in string format. Timestamps are converted to string using RFC3339Nano format.

optional string value = 1;

Returns
Type Description
boolean

Whether the value field is set.

hashCode()

public int hashCode()
Returns
Type Description
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

newBuilderForType()

public SqlResultValue.Builder newBuilderForType()
Returns
Type Description
SqlResultValue.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected SqlResultValue.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Name Description
parent BuilderParent
Returns
Type Description
SqlResultValue.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Name Description
unused UnusedPrivateParameter
Returns
Type Description
Object
Overrides

toBuilder()

public SqlResultValue.Builder toBuilder()
Returns
Type Description
SqlResultValue.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
Name Description
output CodedOutputStream
Overrides
Exceptions
Type Description
IOException