| Package | Description |
|---|---|
| org.apache.sis.storage |
Data store base types for retrieving and saving geospatial data
in various storage formats.
|
| Modifier and Type | Class and Description |
|---|---|
class |
UnsupportedStorageException
Thrown when no
DataStoreProvider is found for a given storage object. |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
DataStore.close()
Closes this data store and releases any underlying resources.
|
void |
StorageConnector.closeAllExcept(Object view)
Closes all streams and connections created by this
StorageConnector except the given view. |
abstract Metadata |
DataStore.getMetadata()
Returns information about the dataset as a whole.
|
<T> T |
StorageConnector.getStorageAs(Class<T> type)
Returns the storage as a view of the given type if possible, or
null otherwise. |
static DataStore |
DataStores.open(Object storage)
Creates a
DataStore for the given storage. |
abstract DataStore |
DataStoreProvider.open(StorageConnector storage)
Returns a data store implementation associated with this provider.
|
abstract ProbeResult |
DataStoreProvider.probeContent(StorageConnector storage)
Indicates if the given storage appears to be supported by the
DataStores created by this provider. |
static String |
DataStores.probeContentType(Object storage)
Returns the MIME type of the storage file format, or
null if unknown or not applicable. |
Copyright © 2010–2015 The Apache Software Foundation. All rights reserved.