public static interface DatastoreV1.PropertyOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getName()
required string name = 1; |
com.google.protobuf.ByteString |
getNameBytes()
required string name = 1; |
DatastoreV1.Value |
getValue()
required .api.services.datastore.Value value = 4; |
DatastoreV1.ValueOrBuilder |
getValueOrBuilder()
required .api.services.datastore.Value value = 4; |
boolean |
hasName()
required string name = 1; |
boolean |
hasValue()
required .api.services.datastore.Value value = 4; |
boolean hasName()
required string name = 1;
The name of the property. A property name matching regex "__.*__" is reserved. A reserved property name is forbidden in certain documented contexts. The name must not contain more than 500 characters. Cannot be "".
String getName()
required string name = 1;
The name of the property. A property name matching regex "__.*__" is reserved. A reserved property name is forbidden in certain documented contexts. The name must not contain more than 500 characters. Cannot be "".
com.google.protobuf.ByteString getNameBytes()
required string name = 1;
The name of the property. A property name matching regex "__.*__" is reserved. A reserved property name is forbidden in certain documented contexts. The name must not contain more than 500 characters. Cannot be "".
boolean hasValue()
required .api.services.datastore.Value value = 4;
The value(s) of the property. Each value can have only one value property populated. For example, you cannot have a values list of <code>{ value: { integerValue: 22, stringValue: "a" } }</code>, but you can have <code>{ value: { listValue: [ { integerValue: 22 }, { stringValue: "a" } ] }</code>.
DatastoreV1.Value getValue()
required .api.services.datastore.Value value = 4;
The value(s) of the property. Each value can have only one value property populated. For example, you cannot have a values list of <code>{ value: { integerValue: 22, stringValue: "a" } }</code>, but you can have <code>{ value: { listValue: [ { integerValue: 22 }, { stringValue: "a" } ] }</code>.
DatastoreV1.ValueOrBuilder getValueOrBuilder()
required .api.services.datastore.Value value = 4;
The value(s) of the property. Each value can have only one value property populated. For example, you cannot have a values list of <code>{ value: { integerValue: 22, stringValue: "a" } }</code>, but you can have <code>{ value: { listValue: [ { integerValue: 22 }, { stringValue: "a" } ] }</code>.
Copyright © 2013. All Rights Reserved.