Class PlanNode.ShortRepresentation.Builder (6.77.0)

public static final class PlanNode.ShortRepresentation.Builder extends GeneratedMessageV3.Builder<PlanNode.ShortRepresentation.Builder> implements PlanNode.ShortRepresentationOrBuilder

Condensed representation of a node and its subtree. Only present for SCALAR PlanNode(s).

Protobuf type google.spanner.v1.PlanNode.ShortRepresentation

Static Methods

getDescriptor()

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

Methods

addRepeatedField(Descriptors.FieldDescriptor field, Object value)

public PlanNode.ShortRepresentation.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters
Name Description
field FieldDescriptor
value Object
Returns
Type Description
PlanNode.ShortRepresentation.Builder
Overrides

build()

public PlanNode.ShortRepresentation build()
Returns
Type Description
PlanNode.ShortRepresentation

buildPartial()

public PlanNode.ShortRepresentation buildPartial()
Returns
Type Description
PlanNode.ShortRepresentation

clear()

public PlanNode.ShortRepresentation.Builder clear()
Returns
Type Description
PlanNode.ShortRepresentation.Builder
Overrides

clearDescription()

public PlanNode.ShortRepresentation.Builder clearDescription()

A string representation of the expression subtree rooted at this node.

string description = 1;

Returns
Type Description
PlanNode.ShortRepresentation.Builder

This builder for chaining.

clearField(Descriptors.FieldDescriptor field)

public PlanNode.ShortRepresentation.Builder clearField(Descriptors.FieldDescriptor field)
Parameter
Name Description
field FieldDescriptor
Returns
Type Description
PlanNode.ShortRepresentation.Builder
Overrides

clearOneof(Descriptors.OneofDescriptor oneof)

public PlanNode.ShortRepresentation.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter
Name Description
oneof OneofDescriptor
Returns
Type Description
PlanNode.ShortRepresentation.Builder
Overrides

clearSubqueries()

public PlanNode.ShortRepresentation.Builder clearSubqueries()
Returns
Type Description
PlanNode.ShortRepresentation.Builder

clone()

public PlanNode.ShortRepresentation.Builder clone()
Returns
Type Description
PlanNode.ShortRepresentation.Builder
Overrides

containsSubqueries(String key)

public boolean containsSubqueries(String key)

A mapping of (subquery variable name) -> (subquery node id) for cases where the description string of this node references a SCALAR subquery contained in the expression subtree rooted at this node. The referenced SCALAR subquery may not necessarily be a direct child of this node.

map<string, int32> subqueries = 2;

Parameter
Name Description
key String
Returns
Type Description
boolean

getDefaultInstanceForType()

public PlanNode.ShortRepresentation getDefaultInstanceForType()
Returns
Type Description
PlanNode.ShortRepresentation

getDescription()

public String getDescription()

A string representation of the expression subtree rooted at this node.

string description = 1;

Returns
Type Description
String

The description.

getDescriptionBytes()

public ByteString getDescriptionBytes()

A string representation of the expression subtree rooted at this node.

string description = 1;

Returns
Type Description
ByteString

The bytes for description.

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
Type Description
Descriptor
Overrides

getMutableSubqueries() (deprecated)

public Map<String,Integer> getMutableSubqueries()

Use alternate mutation accessors instead.

Returns
Type Description
Map<String,Integer>

getSubqueries() (deprecated)

public Map<String,Integer> getSubqueries()

Use #getSubqueriesMap() instead.

Returns
Type Description
Map<String,Integer>

getSubqueriesCount()

public int getSubqueriesCount()

A mapping of (subquery variable name) -> (subquery node id) for cases where the description string of this node references a SCALAR subquery contained in the expression subtree rooted at this node. The referenced SCALAR subquery may not necessarily be a direct child of this node.

map<string, int32> subqueries = 2;

Returns
Type Description
int

getSubqueriesMap()

public Map<String,Integer> getSubqueriesMap()

A mapping of (subquery variable name) -> (subquery node id) for cases where the description string of this node references a SCALAR subquery contained in the expression subtree rooted at this node. The referenced SCALAR subquery may not necessarily be a direct child of this node.

map<string, int32> subqueries = 2;

<