com.esri.arcgis.catalogUI
Class EnumGxView

java.lang.Object
  extended by com.esri.arcgis.catalogUI.EnumGxView
All Implemented Interfaces:
IEnumGxView, com.esri.arcgis.interop.RemoteObjRef, Serializable

public class EnumGxView
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, IEnumGxView

Provides access to a set of GxView object.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

See Also:
Serialized Form

Constructor Summary
EnumGxView(Object obj)
          Construct a EnumGxView using a reference to such an object returned from ArcGIS Engine or Server.
 
Method Summary
 boolean equals(Object o)
          Compare this object with another
 int hashCode()
          the hashcode for this object
 IGxView next()
          The next GxView.
 void reset()
          Resets the enumerator.
 
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

EnumGxView

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

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

Throws:
IOException - if there are interop problems EnumGxView theEnumGxView = (EnumGxView) 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

next

public IGxView next()
             throws IOException,
                    AutomationException
The next GxView.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Specified by:
next in interface IEnumGxView
Returns:
A reference to a com.esri.arcgis.catalogUI.IGxView
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

reset

public void reset()
           throws IOException,
                  AutomationException
Resets the enumerator.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Specified by:
reset in interface IEnumGxView
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.