Package com.google.datastore.v1
Interface AllocateIdsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AllocateIdsResponse
,AllocateIdsResponse.Builder
public interface AllocateIdsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Key
getKeys(int index)
The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID.int
getKeysCount()
The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID.List<Key>
getKeysList()
The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID.KeyOrBuilder
getKeysOrBuilder(int index)
The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID.List<? extends KeyOrBuilder>
getKeysOrBuilderList()
The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKeysList
List<Key> getKeysList()
The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID.
repeated .google.datastore.v1.Key keys = 1;
-
getKeys
Key getKeys(int index)
The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID.
repeated .google.datastore.v1.Key keys = 1;
-
getKeysCount
int getKeysCount()
The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID.
repeated .google.datastore.v1.Key keys = 1;
-
getKeysOrBuilderList
List<? extends KeyOrBuilder> getKeysOrBuilderList()
The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID.
repeated .google.datastore.v1.Key keys = 1;
-
getKeysOrBuilder
KeyOrBuilder getKeysOrBuilder(int index)
The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID.
repeated .google.datastore.v1.Key keys = 1;
-
-