Resource |
WritableAggregate.add(Resource resource) |
Adds a new Resource in this Aggregate.
|
void |
WritableFeatureSet.add(Iterator<? extends AbstractFeature> features) |
Inserts new feature instances in this FeatureSet.
|
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.
|
Collection<? extends Resource> |
Aggregate.components() |
Returns the children resources of this aggregate.
|
Stream<AbstractFeature> |
FeatureSet.features(boolean parallel) |
Returns a stream of all features contained in this dataset.
|
Resource |
DataStore.findResource(String identifier) |
Searches for a resource identified by the given identifier.
|
Optional<Envelope> |
DataSet.getEnvelope() |
Returns the spatiotemporal extent of this resource in its most natural coordinate reference system.
|
GridGeometry |
GridCoverageResource.getGridGeometry() |
Returns the valid extent of grid coordinates together with the conversion from those grid
coordinates to real world coordinates.
|
Optional<GenericName> |
DataStore.getIdentifier() |
Returns an identifier for the root resource of this data store, or null if none.
|
Optional<GenericName> |
Resource.getIdentifier() |
Returns the resource persistent identifier.
|
abstract Metadata |
DataStore.getMetadata() |
Returns information about the data store as a whole.
|
Metadata |
Resource.getMetadata() |
Returns information about this resource.
|
List<SampleDimension> |
GridCoverageResource.getSampleDimensions() |
Returns the ranges of sample values together with the conversion from samples to real values.
|
Object |
StorageConnector.getStorage() |
Returns the input/output object given at construction time.
|
<T> T |
StorageConnector.getStorageAs(Class<T> type) |
Returns the storage as a view of the given type if possible, or null otherwise.
|
DefaultFeatureType |
FeatureSet.getType() |
Returns a description of properties that are common to all features in this dataset.
|
abstract DataStore |
DataStoreProvider.open(StorageConnector connector) |
Returns a data store implementation associated with this provider.
|
DataStore |
DataStoreProvider.open(ParameterValueGroup parameters) |
Returns a data store implementation associated with this provider for the given parameters.
|
static DataStore |
DataStores.open(Object storage) |
|
abstract ProbeResult |
DataStoreProvider.probeContent(StorageConnector connector) |
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.
|
GridCoverage |
GridCoverageResource.read(GridGeometry domain,
int... range) |
Loads a subset of the grid coverage represented by this resource.
|
void |
WritableAggregate.remove(Resource resource) |
Removes a Resource from this Aggregate.
|
boolean |
WritableFeatureSet.removeIf(Predicate<? super AbstractFeature> filter) |
Removes all feature instances from this FeatureSet which matches the given predicate.
|
void |
WritableFeatureSet.replaceIf(Predicate<? super AbstractFeature> filter,
UnaryOperator<AbstractFeature> updater) |
Updates all feature instances from this FeatureSet which match the given predicate.
|
default FeatureSet |
FeatureSet.subset(Query query) |
Requests a subset of features and/or feature properties from this resource.
|
void |
WritableFeatureSet.updateType(DefaultFeatureType newType) |
Declares or redefines the type of all feature instances in this feature set.
|