public class MapsEngine.RasterCollections extends Object
| Modifier and Type | Class and Description |
|---|---|
class |
MapsEngine.RasterCollections.CancelProcessing |
class |
MapsEngine.RasterCollections.Create |
class |
MapsEngine.RasterCollections.Delete |
class |
MapsEngine.RasterCollections.Get |
class |
MapsEngine.RasterCollections.List |
class |
MapsEngine.RasterCollections.Parents
The "parents" collection of methods.
|
class |
MapsEngine.RasterCollections.Patch |
class |
MapsEngine.RasterCollections.Process |
class |
MapsEngine.RasterCollections.Rasters
The "rasters" collection of methods.
|
| Constructor and Description |
|---|
MapsEngine.RasterCollections() |
| Modifier and Type | Method and Description |
|---|---|
MapsEngine.RasterCollections.CancelProcessing |
cancelProcessing(String id)
Cancel processing on a raster collection asset.
|
MapsEngine.RasterCollections.Create |
create(RasterCollection content)
Create a raster collection asset.
|
MapsEngine.RasterCollections.Delete |
delete(String id)
Delete a raster collection.
|
MapsEngine.RasterCollections.Get |
get(String id)
Return metadata for a particular raster collection.
|
MapsEngine.RasterCollections.List |
list()
Return all raster collections readable by the current user.
|
MapsEngine.RasterCollections.Parents |
parents()
An accessor for creating requests from the Parents collection.
|
MapsEngine.RasterCollections.Patch |
patch(String id,
RasterCollection content)
Mutate a raster collection asset.
|
MapsEngine.RasterCollections.Process |
process(String id)
Process a raster collection asset.
|
MapsEngine.RasterCollections.Rasters |
rasters()
An accessor for creating requests from the Rasters collection.
|
public MapsEngine.RasterCollections.CancelProcessing cancelProcessing(String id) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the raster collection.IOExceptionpublic MapsEngine.RasterCollections.Create create(RasterCollection content) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.content - the RasterCollectionIOExceptionpublic MapsEngine.RasterCollections.Delete delete(String id) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the raster collection. Only the raster collection creator or project owner are permitted
to delete. If the rastor collection is included in a layer, the request will fail. Remove
the raster collection from all layers prior to deleting.IOExceptionpublic MapsEngine.RasterCollections.Get get(String id) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the raster collection.IOExceptionpublic MapsEngine.RasterCollections.List list() throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.IOExceptionpublic MapsEngine.RasterCollections.Patch patch(String id, RasterCollection content) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the raster collection.content - the RasterCollectionIOExceptionpublic MapsEngine.RasterCollections.Process process(String id) throws IOException
Process#execute() method to invoke the remote operation.id - The ID of the raster collection.IOExceptionpublic MapsEngine.RasterCollections.Parents parents()
The typical use is:
MapsEngine mapsengine = new MapsEngine(...);MapsEngine.Parents.List request = mapsengine.parents().list(parameters ...)
public MapsEngine.RasterCollections.Rasters rasters()
The typical use is:
MapsEngine mapsengine = new MapsEngine(...);MapsEngine.Rasters.List request = mapsengine.rasters().list(parameters ...)