Interface RowOrBuilder (0.45.0)

public interface RowOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

containsValues(String key)

public abstract boolean containsValues(String key)

The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.

map<string, .google.protobuf.Value> values = 2;

Parameter
NameDescription
keyString
Returns
TypeDescription
boolean

getName()

public abstract String getName()

The resource name of the row. Row names have the form tables/{table}/rows/{row}. The name is ignored when creating a row.

string name = 1;

Returns
TypeDescription
String

The name.

getNameBytes()

public abstract ByteString getNameBytes()

The resource name of the row. Row names have the form tables/{table}/rows/{row}. The name is ignored when creating a row.

string name = 1;

Returns
TypeDescription
ByteString

The bytes for name.

getValues() (deprecated)

public abstract Map<String,Value> getValues()

Use #getValuesMap() instead.

Returns
TypeDescription
Map<String,Value>

getValuesCount()

public abstract int getValuesCount()

The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.

map<string, .google.protobuf.Value> values = 2;

Returns
TypeDescription
int

getValuesMap()

public abstract Map<String,Value> getValuesMap()

The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.

map<string, .google.protobuf.Value> values = 2;

Returns
TypeDescription
Map<String,Value>

getValuesOrDefault(String key, Value defaultValue)

public abstract Value getValuesOrDefault(String key, Value defaultValue)

The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.

map<string, .google.protobuf.Value> values = 2;

Parameters
NameDescription
keyString
defaultValueValue
Returns
TypeDescription
Value

getValuesOrThrow(String key)

public abstract Value getValuesOrThrow(String key)

The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.

map<string, .google.protobuf.Value> values = 2;

Parameter
NameDescription
keyString
Returns
TypeDescription
Value