public interface ValueOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
ArrayValue |
getArrayValue()
An array value.
|
ArrayValueOrBuilder |
getArrayValueOrBuilder()
An array value.
|
boolean |
getBooleanValue()
A boolean value.
|
com.google.protobuf.ByteString |
getBytesValue()
A bytes value.
|
double |
getDoubleValue()
A double value.
|
com.google.type.LatLng |
getGeoPointValue()
A geo point value representing a point on the surface of Earth.
|
com.google.type.LatLngOrBuilder |
getGeoPointValueOrBuilder()
A geo point value representing a point on the surface of Earth.
|
long |
getIntegerValue()
An integer value.
|
MapValue |
getMapValue()
A map value.
|
MapValueOrBuilder |
getMapValueOrBuilder()
A map value.
|
com.google.protobuf.NullValue |
getNullValue()
A null value.
|
int |
getNullValueValue()
A null value.
|
String |
getReferenceValue()
A reference to a document.
|
com.google.protobuf.ByteString |
getReferenceValueBytes()
A reference to a document.
|
String |
getStringValue()
A string value.
|
com.google.protobuf.ByteString |
getStringValueBytes()
A string value.
|
com.google.protobuf.Timestamp |
getTimestampValue()
A timestamp value.
|
com.google.protobuf.TimestampOrBuilder |
getTimestampValueOrBuilder()
A timestamp value.
|
Value.ValueTypeCase |
getValueTypeCase() |
boolean |
hasArrayValue()
An array value.
|
boolean |
hasBooleanValue()
A boolean value.
|
boolean |
hasBytesValue()
A bytes value.
|
boolean |
hasDoubleValue()
A double value.
|
boolean |
hasGeoPointValue()
A geo point value representing a point on the surface of Earth.
|
boolean |
hasIntegerValue()
An integer value.
|
boolean |
hasMapValue()
A map value.
|
boolean |
hasNullValue()
A null value.
|
boolean |
hasReferenceValue()
A reference to a document.
|
boolean |
hasStringValue()
A string value.
|
boolean |
hasTimestampValue()
A timestamp value.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasNullValue()
A null value.
.google.protobuf.NullValue null_value = 11;
int getNullValueValue()
A null value.
.google.protobuf.NullValue null_value = 11;
com.google.protobuf.NullValue getNullValue()
A null value.
.google.protobuf.NullValue null_value = 11;
boolean hasBooleanValue()
A boolean value.
bool boolean_value = 1;
boolean getBooleanValue()
A boolean value.
bool boolean_value = 1;
boolean hasIntegerValue()
An integer value.
int64 integer_value = 2;
long getIntegerValue()
An integer value.
int64 integer_value = 2;
boolean hasDoubleValue()
A double value.
double double_value = 3;
double getDoubleValue()
A double value.
double double_value = 3;
boolean hasTimestampValue()
A timestamp value. Precise only to microseconds. When stored, any additional precision is rounded down.
.google.protobuf.Timestamp timestamp_value = 10;
com.google.protobuf.Timestamp getTimestampValue()
A timestamp value. Precise only to microseconds. When stored, any additional precision is rounded down.
.google.protobuf.Timestamp timestamp_value = 10;
com.google.protobuf.TimestampOrBuilder getTimestampValueOrBuilder()
A timestamp value. Precise only to microseconds. When stored, any additional precision is rounded down.
.google.protobuf.Timestamp timestamp_value = 10;
boolean hasStringValue()
A string value. The string, represented as UTF-8, must not exceed 1 MiB - 89 bytes. Only the first 1,500 bytes of the UTF-8 representation are considered by queries.
string string_value = 17;
String getStringValue()
A string value. The string, represented as UTF-8, must not exceed 1 MiB - 89 bytes. Only the first 1,500 bytes of the UTF-8 representation are considered by queries.
string string_value = 17;
com.google.protobuf.ByteString getStringValueBytes()
A string value. The string, represented as UTF-8, must not exceed 1 MiB - 89 bytes. Only the first 1,500 bytes of the UTF-8 representation are considered by queries.
string string_value = 17;
boolean hasBytesValue()
A bytes value. Must not exceed 1 MiB - 89 bytes. Only the first 1,500 bytes are considered by queries.
bytes bytes_value = 18;
com.google.protobuf.ByteString getBytesValue()
A bytes value. Must not exceed 1 MiB - 89 bytes. Only the first 1,500 bytes are considered by queries.
bytes bytes_value = 18;
boolean hasReferenceValue()
A reference to a document. For example: `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
string reference_value = 5;
String getReferenceValue()
A reference to a document. For example: `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
string reference_value = 5;
com.google.protobuf.ByteString getReferenceValueBytes()
A reference to a document. For example: `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
string reference_value = 5;
boolean hasGeoPointValue()
A geo point value representing a point on the surface of Earth.
.google.type.LatLng geo_point_value = 8;
com.google.type.LatLng getGeoPointValue()
A geo point value representing a point on the surface of Earth.
.google.type.LatLng geo_point_value = 8;
com.google.type.LatLngOrBuilder getGeoPointValueOrBuilder()
A geo point value representing a point on the surface of Earth.
.google.type.LatLng geo_point_value = 8;
boolean hasArrayValue()
An array value. Cannot directly contain another array value, though can contain an map which contains another array.
.google.firestore.v1.ArrayValue array_value = 9;
ArrayValue getArrayValue()
An array value. Cannot directly contain another array value, though can contain an map which contains another array.
.google.firestore.v1.ArrayValue array_value = 9;
ArrayValueOrBuilder getArrayValueOrBuilder()
An array value. Cannot directly contain another array value, though can contain an map which contains another array.
.google.firestore.v1.ArrayValue array_value = 9;
boolean hasMapValue()
A map value.
.google.firestore.v1.MapValue map_value = 6;
MapValue getMapValue()
A map value.
.google.firestore.v1.MapValue map_value = 6;
MapValueOrBuilder getMapValueOrBuilder()
A map value.
.google.firestore.v1.MapValue map_value = 6;
Value.ValueTypeCase getValueTypeCase()
Copyright © 2023 Google LLC. All rights reserved.