Interface PartialArgOrBuilder (3.82.0)

public interface PartialArgOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getBoolValue()

public abstract boolean getBoolValue()

Optional. Represents a boolean value.

bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
boolean

The boolValue.

getDeltaCase()

public abstract PartialArg.DeltaCase getDeltaCase()
Returns
Type Description
PartialArg.DeltaCase

getJsonPath()

public abstract String getJsonPath()

Required. A JSON Path (RFC 9535) to the argument being streamed. https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".

string json_path = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
String

The jsonPath.

getJsonPathBytes()

public abstract ByteString getJsonPathBytes()

Required. A JSON Path (RFC 9535) to the argument being streamed. https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".

string json_path = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
ByteString

The bytes for jsonPath.

getNullValue()

public abstract NullValue getNullValue()

Optional. Represents a null value.

.google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
NullValue

The nullValue.

getNullValueValue()

public abstract int getNullValueValue()

Optional. Represents a null value.

.google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
int

The enum numeric value on the wire for nullValue.

getNumberValue()

public abstract double getNumberValue()

Optional. Represents a double value.

double number_value = 3 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
double

The numberValue.

getStringValue()

public abstract String getStringValue()

Optional. Represents a string value.

string string_value = 4 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
String

The stringValue.

getStringValueBytes()

public abstract ByteString getStringValueBytes()

Optional. Represents a string value.

string string_value = 4 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
ByteString

The bytes for stringValue.

getWillContinue()

public abstract boolean getWillContinue()

Optional. Whether this is not the last part of the same json_path. If true, another PartialArg message for the current json_path is expected to follow.

bool will_continue = 6 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
boolean

The willContinue.

hasBoolValue()

public abstract boolean hasBoolValue()

Optional. Represents a boolean value.

bool bool_value = 5 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
boolean

Whether the boolValue field is set.

hasNullValue()

public abstract boolean hasNullValue()

Optional. Represents a null value.

.google.protobuf.NullValue null_value = 2 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
boolean

Whether the nullValue field is set.

hasNumberValue()

public abstract boolean hasNumberValue()

Optional. Represents a double value.

double number_value = 3 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
boolean

Whether the numberValue field is set.

hasStringValue()

public abstract boolean hasStringValue()

Optional. Represents a string value.

string string_value = 4 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
boolean

Whether the stringValue field is set.