com.esri.arcgis.gisclient
Class WMTSTileMatrixSetLink

java.lang.Object
  extended by com.esri.arcgis.gisclient.WMTSTileMatrixSetLink
All Implemented Interfaces:
IWMTSTileMatrixSetLink, com.esri.arcgis.interop.RemoteObjRef, Serializable

public class WMTSTileMatrixSetLink
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, IWMTSTileMatrixSetLink

Object that describes metadata about the TileMatrixSet reference

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also:
Serialized Form

Constructor Summary
WMTSTileMatrixSetLink(Object obj)
          Construct a WMTSTileMatrixSetLink using a reference to such an object returned from ArcGIS Engine or Server.
 
Method Summary
 boolean equals(Object o)
          Compare this object with another
 String getTileMatrixSet()
          Identifier for the TileMatrix.
 IPropertySet getTileMatrixSetLimits(int ix)
          TileMatrixLimits that describe the availble tile for this layer.
 int getTileMatrixSetLimitsCount()
          TileMatrixSetLimits count.
 int hashCode()
          the hashcode for this object
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef
getJintegraDispatch, release
 

Constructor Detail

WMTSTileMatrixSetLink

public WMTSTileMatrixSetLink(Object obj)
                      throws IOException
Construct a WMTSTileMatrixSetLink using a reference to such an object returned from ArcGIS Engine or Server. This is semantically equivalent to casting obj to WMTSTileMatrixSetLink.
Casting to this class from the return value of a method will not work, as this class represents an abstract class in ArcObjects.
*
WMTSTileMatrixSetLink o = (WMTSTileMatrixSetLink)obj; // will not work

WMTSTileMatrixSetLink o = new WMTSTileMatrixSetLink(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server

Throws:
IOException - if there are interop problems WMTSTileMatrixSetLink theWMTSTileMatrixSetLink = (WMTSTileMatrixSetLink) obj;
Method Detail

equals

public boolean equals(Object o)
Compare this object with another

Overrides:
equals in class Object

hashCode

public int hashCode()
the hashcode for this object

Overrides:
hashCode in class Object

getTileMatrixSet

public String getTileMatrixSet()
                        throws IOException,
                               AutomationException
Identifier for the TileMatrix.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
getTileMatrixSet in interface IWMTSTileMatrixSetLink
Returns:
The iD
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getTileMatrixSetLimitsCount

public int getTileMatrixSetLimitsCount()
                                throws IOException,
                                       AutomationException
TileMatrixSetLimits count.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
getTileMatrixSetLimitsCount in interface IWMTSTileMatrixSetLink
Returns:
The count
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getTileMatrixSetLimits

public IPropertySet getTileMatrixSetLimits(int ix)
                                    throws IOException,
                                           AutomationException
TileMatrixLimits that describe the availble tile for this layer.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
getTileMatrixSetLimits in interface IWMTSTileMatrixSetLink
Parameters:
ix - The ix (in)
Returns:
A reference to a com.esri.arcgis.system.IPropertySet
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.