Class Job

    • Field Summary

      Fields 
      Modifier and Type Field Description
      boolean hasAlpha  
      org.mapsforge.core.model.Tile tile  
    • Constructor Summary

      Constructors 
      Constructor Description
      Job​(org.mapsforge.core.model.Tile tile, boolean hasAlpha)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.String composeKey​(java.lang.String z, java.lang.String x, java.lang.String y)  
      boolean equals​(java.lang.Object obj)  
      java.lang.String getKey()
      Returns a unique identifier for the tile.
      int hashCode()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • hasAlpha

        public final boolean hasAlpha
      • tile

        public final org.mapsforge.core.model.Tile tile
    • Constructor Detail

      • Job

        public Job​(org.mapsforge.core.model.Tile tile,
                   boolean hasAlpha)
    • Method Detail

      • composeKey

        public static java.lang.String composeKey​(java.lang.String z,
                                                  java.lang.String x,
                                                  java.lang.String y)
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • getKey

        public java.lang.String getKey()
        Returns a unique identifier for the tile.

        The key has the form zoom/x/y, which is the de-facto standard for tile references. The default path separator character of the platform is used between zoom, x and y.

        Since:
        0.5.0
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object