Package nl.bebr.mapviewer.data.cache
Interface TileService<T>
-
- All Known Implementing Classes:
AbstractTileService
public interface TileService<T>Interface of Tile service.Defines methods for check if service contain some
Tile-contains(TileCacheInfo)
and method to load theTilefrom cache -getTile(TileCacheInfo).- Author:
- Frantisek Post
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancontains(TileCacheInfo tileCacheInfo)Is tile, defined by param, provided by this service?TgetTile(TileCacheInfo tileCacheInfo)Get tile image
-
-
-
Method Detail
-
contains
boolean contains(TileCacheInfo tileCacheInfo)
Is tile, defined by param, provided by this service?- Parameters:
tileCacheInfo-- Returns:
-
getTile
T getTile(TileCacheInfo tileCacheInfo)
Get tile image- Parameters:
tileCacheInfo-- Returns:
-
-