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 SummaryConstructors Constructor Description TileMatrixLimits()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetMaxcol()longgetMaxrow()longgetMincol()longgetMinrow()StringgetTileMatix()voidsetMaxCol(long maxcol)voidsetMaxRow(long maxrow)voidsetMinCol(long mincol)voidsetMinRow(long minrow)voidsetTileMatix(String tileMatix)StringtoString()
 
- 
- 
- 
Method Detail- 
getTileMatixpublic String getTileMatix() - Returns:
- the tileMatix
 
 - 
setTileMatixpublic void setTileMatix(String tileMatix) - Parameters:
- tileMatix- the tileMatix to set
 
 - 
getMinrowpublic long getMinrow() - Returns:
- the minrow
 
 - 
setMinRowpublic void setMinRow(long minrow) - Parameters:
- minrow- the minrow to set
 
 - 
getMaxrowpublic long getMaxrow() - Returns:
- the maxrow
 
 - 
setMaxRowpublic void setMaxRow(long maxrow) - Parameters:
- maxrow- the maxrow to set
 
 - 
getMincolpublic long getMincol() - Returns:
- the mincol
 
 - 
setMinColpublic void setMinCol(long mincol) - Parameters:
- mincol- the mincol to set
 
 - 
getMaxcolpublic long getMaxcol() - Returns:
- the maxcol
 
 - 
setMaxColpublic void setMaxCol(long maxcol) - Parameters:
- maxcol- the maxcol to set
 
 
- 
 
-