Index

A C D E F G H I L M N O P Q R S T U V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form

A

AbstractFeatureSet - Class in org.apache.sis.storage
Default implementations of several methods for classes that want to implement the FeatureSet interface.
AbstractFeatureSet(StoreListeners, boolean) - Constructor for class AbstractFeatureSet
Creates a new resource which can send notifications to the given set of listeners.
AbstractGridCoverageResource - Class in org.apache.sis.storage
Default implementations of several methods for classes that want to implement the GridCoverageResource interface.
AbstractGridCoverageResource(StoreListeners, boolean) - Constructor for class AbstractGridCoverageResource
Creates a new resource which can send notifications to the given set of listeners.
AbstractResource - Class in org.apache.sis.storage
Default implementations of several methods for classes that want to implement the Resource interface.
AbstractResource(StoreListeners, boolean) - Constructor for class AbstractResource
Creates a new resource which can send notifications to the given set of listeners.
add(Iterator<? extends AbstractFeature>) - Method in interface WritableFeatureSet
Inserts new feature instances in this FeatureSet.
add(DataStore, GenericName, E) - Method in class FeatureNaming
Adds a value for the given name if none exist.
add(Resource) - Method in interface WritableAggregate
Adds a new Resource in this Aggregate.
addListener(Class<T>, StoreListener<? super T>) - Method in class AbstractResource
Registers a listener to notify when the specified kind of event occurs in this resource or in children.
addListener(Class<T>, StoreListener<? super T>) - Method in class DataStore
Registers a listener to notify when the specified kind of event occurs in this data store or in a resource.
addListener(Class<T>, StoreListener<? super T>) - Method in class StoreListeners
Registers a listener to notify when the specified kind of event occurs.
addListener(Class<T>, StoreListener<? super T>) - Method in interface Resource
Registers a listener to notify when the specified kind of event occurs in this resource or in children.
Aggregate - Interface in org.apache.sis.storage
A collection of resources.
alias - Variable in class FeatureQuery.NamedExpression
The name to assign to the expression result, or null if unspecified.
AT_GET_TILE_TIME - Enum constant in enum RasterLoadingStrategy
Raster data are loaded at RenderedImage.getTile(int, int) invocation time.
AT_READ_TIME - Enum constant in enum RasterLoadingStrategy
Raster data are loaded at GridCoverageResource.read(GridGeometry, int...) invocation time.
AT_RENDER_TIME - Enum constant in enum RasterLoadingStrategy
Raster data are loaded at GridCoverage.render(GridExtent) invocation time.

C

CanNotProbeException - Exception Class in org.apache.sis.storage
Thrown when an unrecoverable error occurred during the probing of a file.
CanNotProbeException(DataStoreProvider, String, Throwable) - Constructor for exception class CanNotProbeException
Creates an exception with the specified details message and cause.
CanNotProbeException(DataStoreProvider, StorageConnector, Throwable) - Constructor for exception class CanNotProbeException
Creates a localized exception with a message saying that the given store can not be processed.
canNotRead(String, GridGeometry, Throwable) - Method in class AbstractGridCoverageResource
Creates an exception for a failure to load data.
clearCache() - Method in class AbstractResource
Clears any cache in this resource, forcing the data to be recomputed when needed again.
clone() - Method in class CoverageQuery
Returns a clone of this query.
clone() - Method in class FeatureQuery
Returns a clone of this query.
close() - Method in class DataStore
Closes this data store and releases any underlying resources.
closeAllExcept(Object) - Method in class StorageConnector
Closes all streams and connections created by this StorageConnector except the given view.
commit(Class<S>, String) - Method in class StorageConnector
Returns the storage as a view of the given type and closes all other views.
components() - Method in interface Aggregate
Returns the children resources of this aggregate.
ConcurrentReadException - Exception Class in org.apache.sis.storage
Thrown when an operation can not be performed while a read operation is in progress.
ConcurrentReadException() - Constructor for exception class ConcurrentReadException
Creates an exception with no cause and no details message.
ConcurrentReadException(String) - Constructor for exception class ConcurrentReadException
Creates an exception with the specified details message.
ConcurrentReadException(String, Throwable) - Constructor for exception class ConcurrentReadException
Creates an exception with the specified details message and cause.
ConcurrentReadException(Locale, String) - Constructor for exception class ConcurrentReadException
Creates a localized exception for an operation that can not be executed while a read operation is in progress.
ConcurrentWriteException - Exception Class in org.apache.sis.storage
Thrown when an operation can not be performed while a write operation is in progress.
ConcurrentWriteException() - Constructor for exception class ConcurrentWriteException
Creates an exception with no cause and no details message.
ConcurrentWriteException(String) - Constructor for exception class ConcurrentWriteException
Creates an exception with the specified details message.
ConcurrentWriteException(String, Throwable) - Constructor for exception class ConcurrentWriteException
Creates an exception with the specified details message and cause.
ConcurrentWriteException(Locale, String) - Constructor for exception class ConcurrentWriteException
Creates a localized exception for an operation that can not be executed while a write operation is in progress.
CoverageQuery - Class in org.apache.sis.storage
Definition of filtering to apply for fetching a subset of GridCoverageResource.
CoverageQuery() - Constructor for class CoverageQuery
Creates a new query performing no filtering.
CREATE - Static variable in class DataStoreProvider
Name of the parameter that specifies whether to allow creation of a new DataStore if none exist at the given location.
createMetadata() - Method in class AbstractFeatureSet
Invoked in a synchronized block the first time that getMetadata() is invoked.
createMetadata() - Method in class AbstractGridCoverageResource
Invoked in a synchronized block the first time that getMetadata() is invoked.
createMetadata() - Method in class AbstractResource
Invoked in a synchronized block the first time that AbstractResource.getMetadata() is invoked.
createTileMatrix(TileMatrix) - Method in interface WritableTileMatrixSet
Adds the given tile matrix to this set and returns a writable instance for later completion.
createTileMatrixSet(TileMatrixSet) - Method in interface WritableTiledResource
Adds the given tile matrix set to this resource and returns a writable instance for later completion.

D

DataOptionKey<T> - Class in org.apache.sis.storage
Keys in a map of options for configuring the way data are read or written to a storage.
DataSet - Interface in org.apache.sis.storage
Collection of features that share a common set of attributes or properties.
DataStore - Class in org.apache.sis.storage
Manages a series of features, coverages or sensor data.
DataStore() - Constructor for class DataStore
Creates a new instance with no provider and initially no listener.
DataStore(DataStoreProvider, StorageConnector) - Constructor for class DataStore
Creates a new instance for the given storage (typically file or database).
DataStore(DataStore, DataStoreProvider, StorageConnector, boolean) - Constructor for class DataStore
Creates a new instance as a child of another data store instance.
DataStoreClosedException - Exception Class in org.apache.sis.storage
Thrown when a data store is closed and can no more return data.
DataStoreClosedException(String) - Constructor for exception class DataStoreClosedException
Creates an exception with the specified details message.
DataStoreClosedException(String, Throwable) - Constructor for exception class DataStoreClosedException
Creates an exception with the specified details message and cause.
DataStoreClosedException(Locale, String, OpenOption...) - Constructor for exception class DataStoreClosedException
Creates a localized exception for a reader or writer which has been closed.
DataStoreContentException - Exception Class in org.apache.sis.storage
Thrown when a store can not be read because the stream contains invalid data.
DataStoreContentException(String) - Constructor for exception class DataStoreContentException
Creates an exception with the specified details message.
DataStoreContentException(String, Throwable) - Constructor for exception class DataStoreContentException
Creates an exception with the specified details message and cause.
DataStoreContentException(Throwable) - Constructor for exception class DataStoreContentException
Creates an exception with the specified cause and no details message.
DataStoreContentException(Locale, String, String, Object) - Constructor for exception class DataStoreContentException
Creates a localized exception with a message saying that the given store can not be read.
DataStoreException - Exception Class in org.apache.sis.storage
Thrown when a DataStore can not complete a read or write operation.
DataStoreException() - Constructor for exception class DataStoreException
Creates an exception with no cause and no details message.
DataStoreException(String) - Constructor for exception class DataStoreException
Creates an exception with the specified details message.
DataStoreException(String, Throwable) - Constructor for exception class DataStoreException
Creates an exception with the specified details message and cause.
DataStoreException(Throwable) - Constructor for exception class DataStoreException
Creates an exception with the specified cause and no details message.
DataStoreException(Locale, String, String, Object) - Constructor for exception class DataStoreException
Creates a localized exception with a message saying that the given store can not be processed.
DataStoreProvider - Class in org.apache.sis.storage
Provides information about a specific DataStore implementation.
DataStoreProvider() - Constructor for class DataStoreProvider
Creates a new provider.
DataStoreProvider.Prober<S> - Interface in org.apache.sis.storage
An action to execute for testing if a StorageConnector input can be read.
DataStoreReferencingException - Exception Class in org.apache.sis.storage
Thrown when a data store failed to construct the coordinate reference system (CRS) or other positioning information.
DataStoreReferencingException(String) - Constructor for exception class DataStoreReferencingException
Creates an exception with the specified details message.
DataStoreReferencingException(String, Throwable) - Constructor for exception class DataStoreReferencingException
Creates an exception with the specified details message and cause.
DataStoreReferencingException(Throwable) - Constructor for exception class DataStoreReferencingException
Creates an exception with the specified cause and no details message.
DataStoreReferencingException(Locale, String, String, Object) - Constructor for exception class DataStoreReferencingException
Creates a localized exception with a message saying that the given store can not be read.
DataStores - Class in org.apache.sis.storage
Static convenience methods creating DataStore instances from a given storage object.
DEFAULT_CRS - Static variable in class DataOptionKey
The coordinate reference system (CRS) of data to use if not explicitly defined.
deleteTileMatrix(String) - Method in interface WritableTileMatrixSet
Deletes a TileMatrix identified by the given name.
deleteTileMatrixSet(String) - Method in interface WritableTiledResource
Deletes a TileMatrixSet identified by the given name.
deleteTiles(GridExtent) - Method in interface WritableTileMatrix
Deletes all existing tiles in the given region.

E

equals(Object) - Method in class CoverageQuery
Compares this query with the given object for equality.
equals(Object) - Method in class FeatureQuery
Compares this query with the given object for equality.
equals(Object) - Method in class FeatureQuery.NamedExpression
Compares this column with the given object for equality.
equals(Object) - Method in class ProbeResult
Compares this ProbeResult with the given object for equality.
eventOccured(T) - Method in interface StoreListener
Invoked after a warning or a change occurred in a resource.
execute(FeatureSet) - Method in class FeatureQuery
Applies this query on the given feature set.
execute(GridCoverageResource) - Method in class CoverageQuery
Applies this query on the given coverage resource.
EXISTS - Enum constant in enum TileStatus
The tile exists.
expression - Variable in class FeatureQuery.NamedExpression
The literal, value reference or more complex expression to be retrieved by a Query.

F

FeatureNaming<E> - Class in org.apache.sis.storage
Helper class for mapping GenericName instances and their shortened names to features.
FeatureNaming() - Constructor for class FeatureNaming
Creates a new "GenericName to object" mapping.
FeatureQuery - Class in org.apache.sis.storage
Definition of filtering to apply for fetching a subset of FeatureSet.
FeatureQuery() - Constructor for class FeatureQuery
Creates a new query applying no filter.
FeatureQuery.NamedExpression - Class in org.apache.sis.storage
An expression to be retrieved by a Query, together with the name to assign to it.
features(boolean) - Method in interface FeatureSet
Returns a stream of all features contained in this dataset.
FeatureSet - Interface in org.apache.sis.storage
A dataset providing access to a stream of features.
findResource(String) - Method in class DataStore
Searches for a resource identified by the given identifier.
fire(T, Class<T>) - Method in class StoreListeners
Sends the given event to all listeners registered for the given type or for a super-type.
FOLIATION_REPRESENTATION - Static variable in class DataOptionKey
Whether to assemble trajectory fragments (distinct CSV lines) into a single Feature instance forming a foliation.
ForwardOnlyStorageException - Exception Class in org.apache.sis.storage
Thrown when an operation would require to move the cursor back, but the underlying storage does not allow that.
ForwardOnlyStorageException() - Constructor for exception class ForwardOnlyStorageException
Creates an exception with no cause and no details message.
ForwardOnlyStorageException(String) - Constructor for exception class ForwardOnlyStorageException
Creates an exception with the specified details message.
ForwardOnlyStorageException(String, Throwable) - Constructor for exception class ForwardOnlyStorageException
Creates an exception with the specified details message and cause.
ForwardOnlyStorageException(Locale, String, OpenOption...) - Constructor for exception class ForwardOnlyStorageException
Creates a localized exception with a default message saying that the stream is read-once or write-once.

G

get(DataStore, String) - Method in class FeatureNaming
Returns the value associated to the given name (case sensitive).
getCoordinateReferenceSystem() - Method in interface TileMatrixSet
Returns the coordinate reference system of all TileMatrix instances in this set.
getDescription() - Method in class WarningEvent
Returns the warning message together with stack trace (if any) and other information.
getDisplayName() - Method in class DataStore
Returns a short name or label for this data store.
getEnvelope() - Method in class AbstractGridCoverageResource
Returns the envelope of the grid geometry if known.
getEnvelope() - Method in class AbstractResource
Returns the spatiotemporal envelope of this resource.
getEnvelope() - Method in interface DataSet
Returns the spatiotemporal extent of this resource in its most natural coordinate reference system.
getEnvelope() - Method in interface TileMatrixSet
Returns an envelope that encompasses all TileMatrix instances in this set.
getFeatureCount() - Method in class AbstractFeatureSet
Returns an estimation of the number of features in this set, or empty if unknown.
getFileExtension() - Method in class StorageConnector
Returns the filename extension of the input/output object.
getFormat() - Method in class DataStoreProvider
Returns a description of the data format.
getGridGeometry() - Method in interface GridCoverageResource
Returns the valid extent of grid coordinates together with the conversion from those grid coordinates to real world coordinates.
getIdentifier() - Method in class AbstractFeatureSet
Returns the feature type name as the identifier for this resource.
getIdentifier() - Method in class AbstractResource
Returns the resource persistent identifier if available.
getIdentifier() - Method in class DataStore
Returns an identifier for the root resource of this data store, or an empty value if none.
getIdentifier() - Method in interface Resource
Returns the resource persistent identifier.
getIdentifier() - Method in interface TileMatrix
Returns an alphanumeric identifier which is unique in the TileMatrixSet that contains this TileMatrix.
getIdentifier() - Method in interface TileMatrixSet
Returns an alphanumeric identifier which is unique in the TiledResource that contains this TileMatrixSet.
getIndices() - Method in interface Tile
Returns the indices of this tile in the TileMatrix.
getInternationalMessage() - Method in exception class DataStoreException
If this exception is capable to return the message in various locales, returns that message.
getLimit() - Method in class FeatureQuery
Returns the maximum number of feature instances contained in the FeatureSet.
getLinearResolution() - Method in class FeatureQuery
Returns the desired spatial resolution of geometries.
getLoadingStrategy() - Method in interface GridCoverageResource
Returns an indication about when the "physical" loading of raster data will happen.
getLocale() - Method in class DataStore
The locale to use for formatting warnings and other messages.
getLocale() - Method in class StoreEvent
Returns the locale associated to this event, or null if unspecified.
getLocale() - Method in class StoreListeners
Returns the locale used by this manager, or null if unspecified.
getLocalizedMessage() - Method in exception class DataStoreException
Returns a localized version of the exception message, typically for final user.
getLogger() - Method in class DataStoreProvider
Returns the logger where to report warnings or loading operations.
getLogger() - Method in class StoreListeners
Returns the logger where to send warnings when no other destination is specified.
getMessage() - Method in exception class DataStoreException
Returns the exception message in the default locale, typically for system administrator.
getMetadata() - Method in class AbstractResource
Returns a description of this resource.
getMetadata() - Method in class DataStore
Returns information about the data store as a whole.
getMetadata() - Method in interface Resource
Returns information about this resource.
getMimeType() - Method in class ProbeResult
Returns the MIME type of the storage file format, or null if unknown or not applicable.
getNativeMetadata() - Method in class DataStore
Returns implementation-specific metadata.
getOffset() - Method in class FeatureQuery
Returns the number of feature instances to skip from the beginning.
getOpenParameters() - Method in class DataStore
Returns the parameters used to open this data store.
getOpenParameters() - Method in class DataStoreProvider
Returns a description of all parameters accepted by this provider for opening a data store.
getOption(OptionKey<T>) - Method in class StorageConnector
Returns the option value for the given key, or null if none.
getProjection() - Method in class CoverageQuery
Returns the indices of samples dimensions to read, or null if there is no filtering on range.
getProjection() - Method in class FeatureQuery
Returns the properties to retrieve, or null if all properties shall be included in the query.
getProvider() - Method in exception class CanNotProbeException
Returns the data store provider that failed to probe a file.
getProvider() - Method in class DataStore
Returns the factory that created this DataStore instance.
getResolution() - Method in interface TileMatrix
Returns the resolution (in units of CRS axes) at which tiles in this matrix should be used.
getResolutions() - Method in interface GridCoverageResource
Returns the preferred resolutions (in units of CRS axes) for read operations in this data store.
getResource() - Method in interface Tile
Returns the tile content as a resource.
getSampleDimensions() - Method in interface GridCoverageResource
Returns the ranges of sample values together with the conversion from samples to real values.
getSelection() - Method in class CoverageQuery
Returns the desired grid extent and resolution.
getSelection() - Method in class FeatureQuery
Returns the filter for trimming feature instances.
getShortName() - Method in class DataStoreProvider
Returns a short name or abbreviation for the data format.
getSource() - Method in class StoreEvent
Returns the resource where the event occurred.
getSource() - Method in class StoreListeners
Returns the source of events.
getSourceDomainExpansion() - Method in class CoverageQuery
Returns the number of additional cells to read on each border of the source grid coverage.
getSourceName() - Method in class StoreListeners
Returns a short name or label for the source.
getStatus() - Method in interface Tile
Returns information about whether the tile failed to load.
getStorage() - Method in class StorageConnector
Returns the input/output object given at construction time.
getStorageAs(Class<S>) - Method in class StorageConnector
Returns the storage as a view of the given type if possible, or null otherwise.
getStorageName() - Method in class StorageConnector
Returns a short name of the input/output object.
getSupportedVersions() - Method in class DataStoreProvider
Returns the range of versions supported by the data store, or null if unspecified.
getSynchronizationLock() - Method in class AbstractResource
Returns the object on which to perform synchronizations for thread-safety.
getTile(long...) - Method in interface TileMatrix
Gets a tile at the given indices.
getTileMatrices() - Method in interface TileMatrixSet
Returns all TileMatrix instances in this set, together with their identifiers.
getTileMatrices() - Method in interface WritableTileMatrixSet
Returns all WritableTileMatrix instances in this set, together with their identifiers.
getTileMatrixSets() - Method in interface TiledResource
Returns the collection of all available tile matrix sets in this resource.
getTileMatrixSets() - Method in interface WritableTiledResource
Returns the collection of all available tile matrix sets in this resource.
getTiles(GridExtent, boolean) - Method in interface TileMatrix
Retrieves a stream of existing tiles in the specified region.
getTileStatus(long...) - Method in interface TileMatrix
Fetches information about whether a tile exists, is missing or failed to load.
getTilingScheme() - Method in interface TileMatrix
Returns a description about how space is partitioned into individual tiled units.
getType() - Method in interface FeatureSet
Returns a description of properties that are common to all features in this dataset.
getVersion() - Method in class ProbeResult
Returns the version of file format or database schema used by the storage, or null if unknown or not applicable.
GridCoverageResource - Interface in org.apache.sis.storage
Access to data values in a n-dimensional grid.

H

hashCode() - Method in class CoverageQuery
Returns a hash code value for this query.
hashCode() - Method in class FeatureQuery
Returns a hash code value for this query.
hashCode() - Method in class FeatureQuery.NamedExpression
Returns a hash code value for this column.
hashCode() - Method in class ProbeResult
Returns a hash code value for this instance.
hasListeners(Class<? extends StoreEvent>) - Method in class StoreListeners
Returns true if at least one listener is registered for the given type or a super-type.

I

IllegalFeatureTypeException - Exception Class in org.apache.sis.storage
Thrown when a store can not write the given feature because its type is not one of the supported types.
IllegalFeatureTypeException(String) - Constructor for exception class IllegalFeatureTypeException
Creates an exception with the specified details message.
IllegalFeatureTypeException(String, Throwable) - Constructor for exception class IllegalFeatureTypeException
Creates an exception with the specified details message and cause.
IllegalFeatureTypeException(Throwable) - Constructor for exception class IllegalFeatureTypeException
Creates an exception with the specified cause and no details message.
IllegalFeatureTypeException(Locale, String, GenericName) - Constructor for exception class IllegalFeatureTypeException
Creates an exception with a default message in the given locale.
IllegalNameException - Exception Class in org.apache.sis.storage
Thrown when an invalid name is used for identifying a coverage, a feature or other kind of element in a data store.
IllegalNameException() - Constructor for exception class IllegalNameException
Creates an exception with no cause and no details message.
IllegalNameException(String) - Constructor for exception class IllegalNameException
Creates an exception with the specified details message.
IllegalNameException(String, Throwable) - Constructor for exception class IllegalNameException
Creates an exception with the specified details message and cause.
IllegalNameException(Throwable) - Constructor for exception class IllegalNameException
Creates an exception with the specified cause and no details message.
IllegalNameException(Locale, String, String) - Constructor for exception class IllegalNameException
Creates a new exception with a message saying that the feature of the given name has not been found.
IllegalOpenParameterException - Exception Class in org.apache.sis.storage
Thrown when a DataStore can not be opened because of invalid parameters.
IllegalOpenParameterException() - Constructor for exception class IllegalOpenParameterException
Creates an exception with no cause and no details message.
IllegalOpenParameterException(String) - Constructor for exception class IllegalOpenParameterException
Creates an exception with the specified details message.
IllegalOpenParameterException(String, Throwable) - Constructor for exception class IllegalOpenParameterException
Creates an exception with the specified details message and cause.
IllegalOpenParameterException(Throwable) - Constructor for exception class IllegalOpenParameterException
Creates an exception with the specified cause and no details message.
IN_ERROR - Enum constant in enum TileStatus
The tile exists but attempt to read it failed.
IncompatibleResourceException - Exception Class in org.apache.sis.storage
Thrown when a write operation can not be performed because the resource to write is incompatible with the data store.
IncompatibleResourceException() - Constructor for exception class IncompatibleResourceException
Creates an exception with no cause and no details message.
IncompatibleResourceException(String) - Constructor for exception class IncompatibleResourceException
Creates an exception with the specified details message.
IncompatibleResourceException(String, Throwable) - Constructor for exception class IncompatibleResourceException
Creates an exception with the specified details message and cause.
initCause(Throwable) - Method in exception class DataStoreException
Initializes the cause of this throwable to the specified value.
INSUFFICIENT_BYTES - Static variable in class ProbeResult
The open capability can not be determined because the ByteBuffer contains an insufficient amount of bytes.
InternalDataStoreException - Exception Class in org.apache.sis.storage
Thrown when an internal error occurred in a DataStore implementation.
InternalDataStoreException() - Constructor for exception class InternalDataStoreException
Creates an exception with no details message.
InternalDataStoreException(String) - Constructor for exception class InternalDataStoreException
Creates an exception with the specified details message.
InternalDataStoreException(String, Throwable) - Constructor for exception class InternalDataStoreException
Creates an exception with the specified details message and cause.
InternalDataStoreException(Throwable) - Constructor for exception class InternalDataStoreException
Creates an exception with the specified cause and no details message.
isSupported() - Method in class ProbeResult
Returns true if the storage is supported by the DataStoreProvider.

L

listeners - Variable in class AbstractResource
The set of registered StoreListeners for this resources.
listeners - Variable in class DataStore
The set of registered StoreListeners for this data store.
LOCATION - Static variable in class DataStoreProvider
Name of the parameter that specifies the data store location.
logReadOperation(Object, GridGeometry, long) - Method in class AbstractGridCoverageResource
Logs the execution of a GridCoverageResource.read(GridGeometry, int...) operation.

M

MISSING - Enum constant in enum TileStatus
The tile is flagged as missing.

N

NamedExpression(Expression<? super AbstractFeature, ?>) - Constructor for class FeatureQuery.NamedExpression
Creates a new column with the given expression and no name.
NamedExpression(Expression<? super AbstractFeature, ?>, String) - Constructor for class FeatureQuery.NamedExpression
Creates a new column with the given expression and the given name.
NamedExpression(Expression<? super AbstractFeature, ?>, GenericName) - Constructor for class FeatureQuery.NamedExpression
Creates a new column with the given expression and the given name.
NoSuchDataException - Exception Class in org.apache.sis.storage
Thrown when requested data are not found in the data store.
NoSuchDataException() - Constructor for exception class NoSuchDataException
Creates an exception with no cause and no details message.
NoSuchDataException(String) - Constructor for exception class NoSuchDataException
Creates an exception with the specified details message.
NoSuchDataException(String, Throwable) - Constructor for exception class NoSuchDataException
Creates an exception with the specified details message and cause.
NoSuchDataException(Throwable) - Constructor for exception class NoSuchDataException
Creates an exception with the specified cause and no details message.

O

open(Object) - Static method in class DataStores
Creates a DataStore for the given storage.
open(StorageConnector) - Method in class DataStoreProvider
Returns a data store implementation associated with this provider.
open(ParameterValueGroup) - Method in class DataStoreProvider
Returns a data store implementation associated with this provider for the given parameters.
orElse(Class<A>, DataStoreProvider.Prober<? super A>) - Method in interface DataStoreProvider.Prober
Returns a composed probe that attempts, in sequence, this probe followed by the alternative probe if the first probe can not be executed.
org.apache.sis.storage - package org.apache.sis.storage
Data store base types for retrieving and saving geospatial data in various storage formats.
org.apache.sis.storage.event - package org.apache.sis.storage.event
Provides interfaces and classes for dealing with different types of events fired by resources.
org.apache.sis.storage.tiling - package org.apache.sis.storage.tiling
Base types for retrieving and saving tiles in resources.
OUTSIDE_EXTENT - Enum constant in enum TileStatus
The tile for which a status has been requested is outside the TileMatrix extent.

P

probeContent(StorageConnector) - Method in class DataStoreProvider
Indicates if the given storage appears to be supported by the DataStores created by this provider.
probeContent(StorageConnector, Class<S>, DataStoreProvider.Prober<? super S>) - Method in class DataStoreProvider
Applies the specified test on the storage content without modifying buffer or input stream position.
probeContentType(Object) - Static method in class DataStores
Returns the MIME type of the storage file format, or null if unknown or not applicable.
ProbeResult - Class in org.apache.sis.storage
Tells whether a storage (file, database) appears to be supported by a DataStore.
ProbeResult(boolean, String, Version) - Constructor for class ProbeResult
Creates a new ProbeResult with the given support status, MIME type and version number.
provider - Variable in class DataStore
The factory that created this DataStore instance, or null if unspecified.
providers() - Static method in class DataStores
Returns the set of data store providers available at this method invocation time.

Q

Query - Class in org.apache.sis.storage
Definition of filtering to apply for fetching a resource subset.
Query() - Constructor for class Query
Creates a new, initially empty, query.

R

RasterLoadingStrategy - Enum in org.apache.sis.storage
Time when the "physical" loading of raster data should happen.
read(GridGeometry, int...) - Method in interface GridCoverageResource
Loads a subset of the grid coverage represented by this resource.
ReadOnlyStorageException - Exception Class in org.apache.sis.storage
Thrown when a DataStore can not perform a write operation.
ReadOnlyStorageException() - Constructor for exception class ReadOnlyStorageException
Creates an exception with no cause and no details message.
ReadOnlyStorageException(String) - Constructor for exception class ReadOnlyStorageException
Creates an exception with the specified details message.
ReadOnlyStorageException(String, Throwable) - Constructor for exception class ReadOnlyStorageException
Creates an exception with the specified details message and cause.
ReadOnlyStorageException(Throwable) - Constructor for exception class ReadOnlyStorageException
Creates an exception with the specified cause and no details message.
remove(DataStore, GenericName) - Method in class FeatureNaming
Removes the value associated to the given name.
remove(Resource) - Method in interface WritableAggregate
Removes a Resource from this Aggregate.
removeIf(Predicate<? super AbstractFeature>) - Method in interface WritableFeatureSet
Removes all feature instances from this FeatureSet which matches the given predicate.
removeListener(Class<T>, StoreListener<? super T>) - Method in class AbstractResource
Unregisters a listener previously added to this resource for the given type of events.
removeListener(Class<T>, StoreListener<? super T>) - Method in class DataStore
Unregisters a listener previously added to this data store for the given type of events.
removeListener(Class<T>, StoreListener<? super T>) - Method in class StoreListeners
Unregisters a listener previously added for the given type of events.
removeListener(Class<T>, StoreListener<? super T>) - Method in interface Resource
Unregisters a listener previously added to this resource for the given type of events.
REPLACE - Enum constant in enum WritableGridCoverageResource.CommonOption
Instructs the write operation to replace existing coverage if one exists.
replaceIf(Predicate<? super AbstractFeature>, UnaryOperator<AbstractFeature>) - Method in interface WritableFeatureSet
Updates all feature instances from this FeatureSet which match the given predicate.
Resource - Interface in org.apache.sis.storage
Provides access to geospatial data in a DataStore.
ResourceAlreadyExistsException - Exception Class in org.apache.sis.storage
Thrown when a write operation can not be performed because it would cause the replacement of an existing resource.
ResourceAlreadyExistsException() - Constructor for exception class ResourceAlreadyExistsException
Creates an exception with no cause and no details message.
ResourceAlreadyExistsException(String) - Constructor for exception class ResourceAlreadyExistsException
Creates an exception with the specified details message.
ResourceAlreadyExistsException(String, Throwable) - Constructor for exception class ResourceAlreadyExistsException
Creates an exception with the specified details message and cause.

S

setLimit(long) - Method in class FeatureQuery
Set the maximum number of feature instances contained in the FeatureSet.
setLinearResolution(Quantity<Length>) - Method in class FeatureQuery
Sets the desired spatial resolution of geometries.
setLoadingStrategy(RasterLoadingStrategy) - Method in interface GridCoverageResource
Sets the preferred strategy about when to do the "physical" loading of raster data.
setLocale(Locale) - Method in class DataStore
Sets the locale to use for formatting warnings and other messages.
setOffset(long) - Method in class FeatureQuery
Sets the number of feature instances to skip from the beginning.
setOption(OptionKey<T>, T) - Method in class StorageConnector
Sets the option value for the given key.
setProjection(int...) - Method in class CoverageQuery
Sets the indices of samples dimensions to read (the coverage range).
setProjection(String...) - Method in class CoverageQuery
Sets the sample dimensions to read by their names.
setProjection(String...) - Method in class FeatureQuery
Sets the properties to retrieve by their names.
setProjection(String...) - Method in class Query
Sets the properties to retrieve by their names.
setProjection(Expression<? super AbstractFeature, ?>...) - Method in class FeatureQuery
Sets the properties to retrieve, or null if all properties shall be included in the query.
setProjection(FeatureQuery.NamedExpression...) - Method in class FeatureQuery
Sets the properties to retrieve, or null if all properties shall be included in the query.
setSelection(GridGeometry) - Method in class CoverageQuery
Sets the desired grid extent and resolution.
setSelection(Filter<? super AbstractFeature>) - Method in class FeatureQuery
Sets a filter for trimming feature instances.
setSelection(Envelope) - Method in class CoverageQuery
Sets the approximate area of cells or pixels to include in the subset.
setSelection(Envelope) - Method in class FeatureQuery
Sets the approximate area of feature instances to include in the subset.
setSelection(Envelope) - Method in class Query
Sets the approximate area of feature instances or pixels to include in the subset.
setSourceDomainExpansion(int) - Method in class CoverageQuery
Sets a number of additional cells to read on each border of the source grid coverage.
setUnlimited() - Method in class FeatureQuery
Removes any limit defined by FeatureQuery.setLimit(long).
setUsableEventTypes(Class<?>...) - Method in class StoreListeners
Notifies this StoreListeners that only events of the specified types will be fired.
StorageConnector - Class in org.apache.sis.storage
Information for creating a connection to a DataStore in read and/or write mode.
StorageConnector(Object) - Constructor for class StorageConnector
Creates a new data store connection wrapping the given input/output object.
StoreEvent - Class in org.apache.sis.storage.event
Parent class of events happening in a data store resource.
StoreEvent(Resource) - Constructor for class StoreEvent
Constructs an event that occurred in the given resource.
StoreListener<T extends StoreEvent> - Interface in org.apache.sis.storage.event
An object which listens for events (typically changes or warnings) occurring in a resource or one of its children.
StoreListeners - Class in org.apache.sis.storage.event
Holds a list of StoreListener instances and provides convenience methods for sending events.
StoreListeners(StoreListeners, Resource) - Constructor for class StoreListeners
Creates a new instance with the given parent and initially no listener.
subset(Query) - Method in interface FeatureSet
Requests a subset of features and/or feature properties from this resource.
subset(Query) - Method in interface GridCoverageResource
Requests a subset of the coverage.
SUPPORTED - Static variable in class ProbeResult
The DataStoreProvider recognizes the given storage, but has no additional information.

T

test(S) - Method in interface DataStoreProvider.Prober
Probes the given input and returns an indication about whether that input is supported.
Tile - Interface in org.apache.sis.storage.tiling
A small hyper-rectangular representation of data which is part of a tiling scheme.
TiledResource - Interface in org.apache.sis.storage.tiling
A resource which content can be accessed by smaller chunks called tiles.
TileMatrix - Interface in org.apache.sis.storage.tiling
A collection of tiles with the same size and properties placed on a regular grid with no overlapping.
TileMatrixSet - Interface in org.apache.sis.storage.tiling
A collection of TileMatrix in the same CRS but at different scale levels.
TileStatus - Enum in org.apache.sis.storage.tiling
Information about the availability of a tile.
toString() - Method in class CoverageQuery
Returns a textual representation of this query for debugging purposes.
toString() - Method in class DataStore
Returns a string representation of this data store for debugging purpose.
toString() - Method in class WarningEvent
Returns a string representation of this warning for debugging purpose.
toString() - Method in class FeatureQuery.NamedExpression
Returns a string representation of this column for debugging purpose.
toString() - Method in class FeatureQuery
Returns a textual representation of this query for debugging purposes.
toString() - Method in class ProbeResult
Returns a string representation of this ProbeResult for debugging purpose.
toString() - Method in class StorageConnector
Returns a string representation of this StorageConnector for debugging purpose.

U

UNDETERMINED - Static variable in class ProbeResult
The open capability can not be determined.
UNKNOWN - Enum constant in enum TileStatus
The tile status can not be known unless the tile is read.
UNSUPPORTED_STORAGE - Static variable in class ProbeResult
The DataStoreProvider does not recognize the given storage object, file format or database schema.
UnsupportedEncodingException - Exception Class in org.apache.sis.storage
Thrown when a storage uses some encoding options not supported by current implementation.
UnsupportedEncodingException(String) - Constructor for exception class UnsupportedEncodingException
Creates an exception with the specified details message.
UnsupportedEncodingException(String, Throwable) - Constructor for exception class UnsupportedEncodingException
Creates an exception with the specified details message and cause.
UnsupportedEncodingException(Throwable) - Constructor for exception class UnsupportedEncodingException
Creates an exception with the specified cause and no details message.
UnsupportedQueryException - Exception Class in org.apache.sis.storage
Thrown when a resources can not be filtered with a given query.
UnsupportedQueryException() - Constructor for exception class UnsupportedQueryException
Creates an exception with no cause and no details message.
UnsupportedQueryException(String) - Constructor for exception class UnsupportedQueryException
Creates an exception with the specified details message.
UnsupportedQueryException(String, Throwable) - Constructor for exception class UnsupportedQueryException
Creates an exception with the specified details message and cause.
UnsupportedQueryException(Throwable) - Constructor for exception class UnsupportedQueryException
Creates an exception with the specified cause and no details message.
UnsupportedStorageException - Exception Class in org.apache.sis.storage
Thrown when no DataStoreProvider is found for a given storage object.
UnsupportedStorageException() - Constructor for exception class UnsupportedStorageException
Creates an exception with no cause and no details message.
UnsupportedStorageException(String) - Constructor for exception class UnsupportedStorageException
Creates an exception with the specified details message.
UnsupportedStorageException(String, Throwable) - Constructor for exception class UnsupportedStorageException
Creates an exception with the specified details message and cause.
UnsupportedStorageException(Throwable) - Constructor for exception class UnsupportedStorageException
Creates an exception with the specified cause and no details message.
UnsupportedStorageException(Locale, String, Object, OpenOption...) - Constructor for exception class UnsupportedStorageException
Creates a localized exception for an invalid input or output object given to a data store.
UPDATE - Enum constant in enum WritableGridCoverageResource.CommonOption
Instructs the write operation to update existing coverage if one exists.
updateType(DefaultFeatureType) - Method in interface WritableFeatureSet
Declares or redefines the type of all feature instances in this feature set.
useWarningEventsOnly() - Method in class StoreListeners
Notifies this StoreListeners that it will fire only WarningEvents.

V

valueOf(String) - Static method in enum RasterLoadingStrategy
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum TileStatus
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum WritableGridCoverageResource.CommonOption
Returns the enum constant of this type with the specified name.
values() - Static method in enum RasterLoadingStrategy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum TileStatus
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum WritableGridCoverageResource.CommonOption
Returns an array containing the constants of this enum type, in the order they are declared.

W

warning(Exception) - Method in class StoreListeners
Reports a warning described by the given exception.
warning(String) - Method in class StoreListeners
Reports a warning described by the given message.
warning(String, Exception) - Method in class StoreListeners
Reports a warning described by the given message and exception.
warning(Level, String, Exception) - Method in class StoreListeners
Reports a warning at the given level represented by the given message and exception.
warning(LogRecord) - Method in class StoreListeners
Reports a warning described by the given log record.
warning(LogRecord, Filter) - Method in class StoreListeners
Reports a warning described by the given log record.
WarningEvent - Class in org.apache.sis.storage.event
Describes non-fatal errors that occurred in a resource or a data store.
WarningEvent(Resource, LogRecord) - Constructor for class WarningEvent
Constructs an event for a warning that occurred in the given resource.
WritableAggregate - Interface in org.apache.sis.storage
An Aggregate with writing capabilities.
WritableFeatureSet - Interface in org.apache.sis.storage
A FeatureSet with writing capabilities.
WritableGridCoverageResource - Interface in org.apache.sis.storage
A GridCoverageResource with writing capabilities.
WritableGridCoverageResource.CommonOption - Enum in org.apache.sis.storage
Write options that may apply to any data store.
WritableGridCoverageResource.Option - Interface in org.apache.sis.storage
Configuration of the process of writing a coverage in a data store.
WritableTiledResource - Interface in org.apache.sis.storage.tiling
A TiledResource that can write and delete tile matrix sets.
WritableTileMatrix - Interface in org.apache.sis.storage.tiling
A TileMatrix that can write and delete tiles.
WritableTileMatrixSet - Interface in org.apache.sis.storage.tiling
A TileMatrixSet that can write and delete tile matrices.
write(GridCoverage, WritableGridCoverageResource.Option...) - Method in interface WritableGridCoverageResource
Writes a new coverage in the data store for this resource.
writeTiles(Stream<Tile>) - Method in interface WritableTileMatrix
Writes a stream of tiles.
A C D E F G H I L M N O P Q R S T U V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form