public interface RowOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
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 | |
|---|---|
| Name | Description |
key |
String |
| Returns | |
|---|---|
| Type | Description |
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 | |
|---|---|
| Type | Description |
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 | |
|---|---|
| Type | Description |
ByteString |
The bytes for name. |
getValues() (deprecated)
public abstract Map<String,Value> getValues()Use #getValuesMap() instead.
| Returns | |
|---|---|
| Type | Description |
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 | |
|---|---|
| Type | Description |
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 | |
|---|---|
| Type | Description |
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 | |
|---|---|
| Name | Description |
key |
String |
defaultValue |
Value |
| Returns | |
|---|---|
| Type | Description |
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 | |
|---|---|
| Name | Description |
key |
String |
| Returns | |
|---|---|
| Type | Description |
Value |
|