public class MapsEngine.Tables
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
class |
MapsEngine.Tables.Create |
class |
MapsEngine.Tables.Delete |
class |
MapsEngine.Tables.Features
The "features" collection of methods.
|
class |
MapsEngine.Tables.Files
The "files" collection of methods.
|
class |
MapsEngine.Tables.Get |
class |
MapsEngine.Tables.List |
class |
MapsEngine.Tables.Parents
The "parents" collection of methods.
|
class |
MapsEngine.Tables.Patch |
class |
MapsEngine.Tables.Upload |
| Constructor and Description |
|---|
MapsEngine.Tables() |
| Modifier and Type | Method and Description |
|---|---|
MapsEngine.Tables.Create |
create(Table content)
Create a table asset.
|
MapsEngine.Tables.Delete |
delete(java.lang.String id)
Delete a table.
|
MapsEngine.Tables.Features |
features()
An accessor for creating requests from the Features collection.
|
MapsEngine.Tables.Files |
files()
An accessor for creating requests from the Files collection.
|
MapsEngine.Tables.Get |
get(java.lang.String id)
Return metadata for a particular table, including the schema.
|
MapsEngine.Tables.List |
list()
Return all tables readable by the current user.
|
MapsEngine.Tables.Parents |
parents()
An accessor for creating requests from the Parents collection.
|
MapsEngine.Tables.Patch |
patch(java.lang.String id,
Table content)
Mutate a table asset.
|
MapsEngine.Tables.Upload |
upload(Table content)
Create a placeholder table asset to which table files can be uploaded.
|
public MapsEngine.Tables.Create create(Table content) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.content - the Tablejava.io.IOExceptionpublic MapsEngine.Tables.Delete delete(java.lang.String id) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the table. Only the table creator or project owner are permitted to delete. If the table
is included in a layer, the request will fail. Remove it from all layers prior to
deleting.java.io.IOExceptionpublic MapsEngine.Tables.Get get(java.lang.String id) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the table.java.io.IOExceptionpublic MapsEngine.Tables.List list() throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.java.io.IOExceptionpublic MapsEngine.Tables.Patch patch(java.lang.String id, Table content) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - The ID of the table.content - the Tablejava.io.IOExceptionpublic MapsEngine.Tables.Upload upload(Table content) throws java.io.IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.content - the Tablejava.io.IOExceptionpublic MapsEngine.Tables.Features features()
The typical use is:
MapsEngine mapsengine = new MapsEngine(...);MapsEngine.Features.List request = mapsengine.features().list(parameters ...)
public MapsEngine.Tables.Files files()
The typical use is:
MapsEngine mapsengine = new MapsEngine(...);MapsEngine.Files.List request = mapsengine.files().list(parameters ...)
public MapsEngine.Tables.Parents parents()
The typical use is:
MapsEngine mapsengine = new MapsEngine(...);MapsEngine.Parents.List request = mapsengine.parents().list(parameters ...)