public class MapsEngine.Rasters
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
class |
MapsEngine.Rasters.Delete |
class |
MapsEngine.Rasters.Files
The "files" collection of methods.
|
class |
MapsEngine.Rasters.Get |
class |
MapsEngine.Rasters.Parents
The "parents" collection of methods.
|
class |
MapsEngine.Rasters.Patch |
class |
MapsEngine.Rasters.Upload |
| Constructor and Description |
|---|
MapsEngine.Rasters() |
| Modifier and Type | Method and Description |
|---|---|
MapsEngine.Rasters.Delete |
delete(java.lang.String id)
Delete a raster.
|
MapsEngine.Rasters.Files |
files()
An accessor for creating requests from the Files collection.
|
MapsEngine.Rasters.Get |
get(java.lang.String id)
Return metadata for a single raster.
|
MapsEngine.Rasters.Parents |
parents()
An accessor for creating requests from the Parents collection.
|
MapsEngine.Rasters.Patch |
patch(java.lang.String id,
Raster content)
Mutate a raster asset.
|
MapsEngine.Rasters.Upload |
upload(Raster content)
Create a skeleton raster asset for upload.
|
public MapsEngine.Rasters.Delete delete(java.lang.String id) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the raster. Only the raster creator or project owner are permitted to delete. If the
raster is included in a layer or mosaic, the request will fail. Remove it from all parents
prior to deleting.java.io.IOExceptionpublic MapsEngine.Rasters.Get get(java.lang.String id) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the raster.java.io.IOExceptionpublic MapsEngine.Rasters.Patch patch(java.lang.String id, Raster content) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the raster.content - the Rasterjava.io.IOExceptionpublic MapsEngine.Rasters.Upload upload(Raster content) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.content - the Rasterjava.io.IOExceptionpublic MapsEngine.Rasters.Files files()
The typical use is:
MapsEngine mapsengine = new MapsEngine(...);MapsEngine.Files.List request = mapsengine.files().list(parameters ...)
public MapsEngine.Rasters.Parents parents()
The typical use is:
MapsEngine mapsengine = new MapsEngine(...);MapsEngine.Parents.List request = mapsengine.parents().list(parameters ...)