Package com.aerisweather.aeris.tiles
Class AerisAnimationInfo
- java.lang.Object
-
- com.aerisweather.aeris.tiles.AerisAnimationInfo
-
public class AerisAnimationInfo extends Object
Animation info returned fromanimation load task
-
-
Constructor Summary
Constructors Constructor Description AerisAnimationInfo(android.graphics.Bitmap bitmap, TileTimeInfo tileInfo, AerisTile tile)Creates an instance with the bitmap, tile info, and Aeris tile associated with the animation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description android.graphics.BitmapgetBitmap()Gets the bitmapAerisTilegetTile()Gets the tile type of this animation.TileTimeInfogetTileInfo()Gets the tile info of time.
-
-
-
Constructor Detail
-
AerisAnimationInfo
public AerisAnimationInfo(android.graphics.Bitmap bitmap, TileTimeInfo tileInfo, AerisTile tile)Creates an instance with the bitmap, tile info, and Aeris tile associated with the animation.- Parameters:
bitmap- bitmap associated with this time.tileInfo- Tile info with time stamps.tile- tile type that is being used.
-
-
Method Detail
-
getTileInfo
public TileTimeInfo getTileInfo()
Gets the tile info of time.- Returns:
- tile info.
-
getBitmap
public android.graphics.Bitmap getBitmap()
Gets the bitmap- Returns:
- bitmap for the animation.
-
getTile
public AerisTile getTile()
Gets the tile type of this animation.- Returns:
- the tile
-
-