com.esri.arcgis.system
Class IEnumVariantSimpleProxy

java.lang.Object
  extended by com.esri.arcgis.interop.Dispatch
      extended by com.esri.arcgis.system.IEnumVariantSimpleProxy
All Implemented Interfaces:
IEnumVariantSimple, Externalizable, Serializable

public class IEnumVariantSimpleProxy
extends com.esri.arcgis.interop.Dispatch
implements IEnumVariantSimple, Serializable

Provides access to members that enumerate over a set of VARIANTs.

Description

IEnumVariantSimple is a VB friendly alternative to the standard OLE interface IEnumVariant. Where IEnumVariant pointers are returned by ESRI interfaces, such as IDataStatistics, you should instead be able to use IEnumVariantSimple.

Product Availability

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

See Also:
Serialized Form

Field Summary
 boolean noncastable
           
 
Fields inherited from class com.esri.arcgis.interop.Dispatch
DISPATCH_METHOD, DISPATCH_PROPERTYGET, DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF, objRef
 
Constructor Summary
  IEnumVariantSimpleProxy()
           
  IEnumVariantSimpleProxy(Object obj)
           
protected IEnumVariantSimpleProxy(Object obj, String iid)
           
 
Method Summary
 void addListener(String iidStr, Object theListener, Object theSource)
           
 Object next()
          Obtains the next VARIANT in the set.
 void removeListener(String iidStr, Object theListener)
           
 void reset()
          Resets the internal cursor back to the beginning of the set.
 
Methods inherited from class com.esri.arcgis.interop.Dispatch
bindUsingMoniker, constructVtblPosTable, convertToNative, cookieForListener, createDispatch, createObjrefMonikerDisplayName, equals, getActiveObject, getActiveObject, getDefaultProperty, getDispatchIdOfName, getLastErrorCode, getMtsObjectContext, getObjRef, getPropertyByName, getPropertyByName, getVtblPos, hashCode, initDispatch, invoke, invokeMethodByName, invokeMethodByName, invokeMethodByName, invokePropertyGetByName, invokePropertyPutByName, invokePropertyPutByRefByName, isNativeMode, isObjRef, optimizedVtblInvoke, queryInterface, readExternal, release, setNativeMode, setPropertyByName, toString, vtblInvoke, writeExternal
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

noncastable

public boolean noncastable
Constructor Detail

IEnumVariantSimpleProxy

public IEnumVariantSimpleProxy()

IEnumVariantSimpleProxy

public IEnumVariantSimpleProxy(Object obj)
                        throws IOException
Throws:
IOException

IEnumVariantSimpleProxy

protected IEnumVariantSimpleProxy(Object obj,
                                  String iid)
                           throws IOException
Throws:
IOException
Method Detail

addListener

public void addListener(String iidStr,
                        Object theListener,
                        Object theSource)
                 throws IOException
Overrides:
addListener in class com.esri.arcgis.interop.Dispatch
Throws:
IOException

removeListener

public void removeListener(String iidStr,
                           Object theListener)
                    throws IOException
Overrides:
removeListener in class com.esri.arcgis.interop.Dispatch
Throws:
IOException

next

public Object next()
            throws IOException,
                   AutomationException
Obtains the next VARIANT in the set.

Description

The Next method returns the next variant in the enumerator.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Specified by:
next in interface IEnumVariantSimple
Returns:
A Variant
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

reset

public void reset()
           throws IOException,
                  AutomationException
Resets the internal cursor back to the beginning of the set.

Description

The Reset method resets the enumerator so that the next call to the Next method returns the first variant in the enumerator.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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