Class TLfnTileStoreDataSource
java.lang.Object
com.luciad.fusion.tilestore.model.TLfnTileStoreDataSource
- All Implemented Interfaces:
ILcdDataSource
A description of a LuciadFusion data source.
The data source is described by a Tile Store and one or more of its coverages.
- Since:
- 11.0
-
Constructor Summary
ConstructorDescriptionTLfnTileStoreDataSource
(ALfnTileStore aTileStore, ALfnCoverageMetadata aCoverageMetadata) Creates a Tile Store data source.TLfnTileStoreDataSource
(ALfnTileStore aTileStore, ALfnCoverageMetadata... aCoverageMetadata) Deprecated.TLfnTileStoreDataSource
(ALfnTileStore aTileStore, List<ALfnCoverageMetadata> aCoverageMetadata) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionGets the coverage metadata of this data source.final List
<ALfnCoverageMetadata> Deprecated.usegetCoverageMetadata()
insteadReturns a string description of the data source.Gets the Tile Store of this data source.
-
Constructor Details
-
TLfnTileStoreDataSource
Creates a Tile Store data source.- Parameters:
aTileStore
- a Tile Store (required, must not benull
)aCoverageMetadata
- the coverage metadata (optional, may benull
)
-
TLfnTileStoreDataSource
Deprecated.This constructor will use the first of the given coverage metadata, if any, and ignore all others.- Parameters:
aTileStore
- A Tile Store (required, must not benull
).aCoverageMetadata
- The coverage metadata (required, may be empty but must not benull
).
-
TLfnTileStoreDataSource
public TLfnTileStoreDataSource(ALfnTileStore aTileStore, List<ALfnCoverageMetadata> aCoverageMetadata) Deprecated.This constructor will use the first of the given coverage metadata, if any, and ignore all others.- Parameters:
aTileStore
- A Tile Store (required, must not benull
).aCoverageMetadata
- The coverage metadata (required, may be empty but must not benull
).
-
-
Method Details
-
getTileStore
Gets the Tile Store of this data source.- Returns:
- the Tile Store
-
getCoverageMetadatas
Deprecated.usegetCoverageMetadata()
insteadGets the coverage metadata of this data source as a list. A data source can contain at most one coverage metadata, so the list can contain at most one element.- Returns:
- list of metadata objects, possibly empty but never
null
-
getCoverageMetadata
Gets the coverage metadata of this data source.- Returns:
- the coverage metadata, possibly
null
- Since:
- 2015.1
-
getDescription
Description copied from interface:ILcdDataSource
Returns a string description of the data source. This will typically be used in a GUI, or in error and warning messages.- Specified by:
getDescription
in interfaceILcdDataSource
- Returns:
- a String describing the data source.
-
TLfnTileStoreDataSource(ALfnTileStore, ALfnCoverageMetadata)
instead.