Package org.geotools.ows.wmts.model
Class TileMatrixLimits
- Object
-
- TileMatrixLimits
-
public class TileMatrixLimits extends Object
Range subset for a layer in a TileMatrixSet.To inform the client about the valid range of the TileCol and Tile Row indices a layer definition can optionally use the tileMatrixSetLimits section that specifies a minimum and a maximum that are limits of these indices for each TileMatrix.
- Author:
- ian, Emanuele Tajariol (etj at geo-solutions dot it)
-
-
Constructor Summary
Constructors Constructor Description TileMatrixLimits()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getMaxcol()
long
getMaxrow()
long
getMincol()
long
getMinrow()
String
getTileMatix()
void
setMaxCol(long maxcol)
void
setMaxRow(long maxrow)
void
setMinCol(long mincol)
void
setMinRow(long minrow)
void
setTileMatix(String tileMatix)
String
toString()
-
-
-
Method Detail
-
getTileMatix
public String getTileMatix()
- Returns:
- the tileMatix
-
setTileMatix
public void setTileMatix(String tileMatix)
- Parameters:
tileMatix
- the tileMatix to set
-
getMinrow
public long getMinrow()
- Returns:
- the minrow
-
setMinRow
public void setMinRow(long minrow)
- Parameters:
minrow
- the minrow to set
-
getMaxrow
public long getMaxrow()
- Returns:
- the maxrow
-
setMaxRow
public void setMaxRow(long maxrow)
- Parameters:
maxrow
- the maxrow to set
-
getMincol
public long getMincol()
- Returns:
- the mincol
-
setMinCol
public void setMinCol(long mincol)
- Parameters:
mincol
- the mincol to set
-
getMaxcol
public long getMaxcol()
- Returns:
- the maxcol
-
setMaxCol
public void setMaxCol(long maxcol)
- Parameters:
maxcol
- the maxcol to set
-
-