Interface ValueOrBuilder (3.7.0)

public interface ValueOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getBoolValue()

public abstract boolean getBoolValue()

Represents a boolean value.

bool bool_value = 5;

Returns
TypeDescription
boolean

The boolValue.

getDoubleValue()

public abstract double getDoubleValue()

Represents a double value.

double double_value = 3;

Returns
TypeDescription
double

The doubleValue.

getInt64Value()

public abstract long getInt64Value()

Represents an int64 value.

int64 int64_value = 1;

Returns
TypeDescription
long

The int64Value.

getKindCase()

public abstract Value.KindCase getKindCase()
Returns
TypeDescription
Value.KindCase

getProtoValue()

public abstract Any getProtoValue()

Represents an 'Any' proto value.

.google.protobuf.Any proto_value = 4;

Returns
TypeDescription
Any

The protoValue.

getProtoValueOrBuilder()

public abstract AnyOrBuilder getProtoValueOrBuilder()

Represents an 'Any' proto value.

.google.protobuf.Any proto_value = 4;

Returns
TypeDescription
AnyOrBuilder

getStringValue()

public abstract String getStringValue()

Represents a string value.

string string_value = 2;

Returns
TypeDescription
String

The stringValue.

getStringValueBytes()

public abstract ByteString getStringValueBytes()

Represents a string value.

string string_value = 2;

Returns
TypeDescription
ByteString

The bytes for stringValue.

hasBoolValue()

public abstract boolean hasBoolValue()

Represents a boolean value.

bool bool_value = 5;

Returns
TypeDescription
boolean

Whether the boolValue field is set.

hasDoubleValue()

public abstract boolean hasDoubleValue()

Represents a double value.

double double_value = 3;

Returns
TypeDescription
boolean

Whether the doubleValue field is set.

hasInt64Value()

public abstract boolean hasInt64Value()

Represents an int64 value.

int64 int64_value = 1;

Returns
TypeDescription
boolean

Whether the int64Value field is set.

hasProtoValue()

public abstract boolean hasProtoValue()

Represents an 'Any' proto value.

.google.protobuf.Any proto_value = 4;

Returns
TypeDescription
boolean

Whether the protoValue field is set.

hasStringValue()

public abstract boolean hasStringValue()

Represents a string value.

string string_value = 2;

Returns
TypeDescription
boolean

Whether the stringValue field is set.