Class MultilevelTileCoordinate

java.lang.Object
com.luciad.models.MultilevelTileCoordinate

public final class MultilevelTileCoordinate extends Object
Represents the coordinate of a tile in a multilevel tiled structure.

It contains the level, the column, and the row.

This class can be used to identify tiles from, for example, raster models created by:

  • Constructor Details Link icon

    • MultilevelTileCoordinate Link icon

      public MultilevelTileCoordinate(long level, long column, long row)
      Constructor for multilevel tile coordinates.

      All three coordinates are required.

  • Method Details Link icon

    • getLevel Link icon

      public long getLevel()
      The detail level of the tile.
    • getColumn Link icon

      public long getColumn()
      The column index of the tile.
    • getRow Link icon

      public long getRow()
      The row index of the tile.
    • toString Link icon

      @NotNull public String toString()
      Overrides:
      toString in class Object
    • equals Link icon

      public boolean equals(Object other)
      Overrides:
      equals in class Object
    • hashCode Link icon

      public int hashCode()
      Overrides:
      hashCode in class Object