public class MapsEngine.Tables.Features extends Object
| Modifier and Type | Class and Description |
|---|---|
class |
MapsEngine.Tables.Features.BatchDelete |
class |
MapsEngine.Tables.Features.BatchInsert |
class |
MapsEngine.Tables.Features.BatchPatch |
class |
MapsEngine.Tables.Features.Get |
class |
MapsEngine.Tables.Features.List |
| Constructor and Description |
|---|
MapsEngine.Tables.Features() |
| Modifier and Type | Method and Description |
|---|---|
MapsEngine.Tables.Features.BatchDelete |
batchDelete(String id,
FeaturesBatchDeleteRequest content)
Delete all features matching the given IDs.
|
MapsEngine.Tables.Features.BatchInsert |
batchInsert(String id,
FeaturesBatchInsertRequest content)
Append the supplied features.
|
MapsEngine.Tables.Features.BatchPatch |
batchPatch(String id,
FeaturesBatchPatchRequest content)
Patch the supplied features.
|
MapsEngine.Tables.Features.Get |
get(String tableId,
String id)
Return a single feature, given its ID.
|
MapsEngine.Tables.Features.List |
list(String id)
Return all features readable by the current user.
|
public MapsEngine.Tables.Features.BatchDelete batchDelete(String id, FeaturesBatchDeleteRequest content) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote
operation.id - The ID of the table that contains the features to be deleted.content - the FeaturesBatchDeleteRequestIOExceptionpublic MapsEngine.Tables.Features.BatchInsert batchInsert(String id, FeaturesBatchInsertRequest content) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote
operation.id - The ID of the table to append the features to.content - the FeaturesBatchInsertRequestIOExceptionpublic MapsEngine.Tables.Features.BatchPatch batchPatch(String id, FeaturesBatchPatchRequest content) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the table containing the features to be patched.content - the FeaturesBatchPatchRequestIOExceptionpublic MapsEngine.Tables.Features.Get get(String tableId, String id) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.tableId - The ID of the table.id - The ID of the feature to get.IOExceptionpublic MapsEngine.Tables.Features.List list(String id) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the table to which these features belong.IOException