|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.geodatabase.TinNodeEnumerator
public class TinNodeEnumerator
The Esri TinNodeEnumerator component.
The TinNodeEnumerator object is used for iterative TinNode processing on TINs. For example, to return all nodes within the interpolation zone (domain) of a TIN or the nodes of a TinPolyline. TinFilters, like TinValueFilter and TinDataElementFilter are used to control which nodes are passed back by the enumerator. Custom, application specific, filters can be used as well.
The TinNodeEnumerator object isn't co-creatable. Other functions are used to create it. Tin, TinPolyline, and TinPolygon objects can create and return TinNodeEnumerators.
Constructor Summary | |
---|---|
TinNodeEnumerator(Object obj)
Construct a TinNodeEnumerator 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 |
ITinNode |
IEnumTinNode_next()
Gets next node element. |
void |
interfaceSupportsErrorInfo(GUID riid)
interfaceSupportsErrorInfo |
ITinElement |
next()
Gets next element. |
void |
queryNext(ITinElement pElement)
Queries next element. |
void |
queryNext(ITinNode pNode)
Queries next node element. |
void |
queryNextAsWKSPointZ(_WKSPointZ[] pPoint,
boolean[] pbIsEnd)
Queries next node element as a WKS point with z values. |
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 |
---|
public TinNodeEnumerator(Object obj) throws IOException
obj
to TinNodeEnumerator
. *
TinNodeEnumerator o = (TinNodeEnumerator)obj; // will not work
TinNodeEnumerator o = new TinNodeEnumerator(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server
IOException
- if there are interop problems
TinNodeEnumerator theTinNodeEnumerator = (TinNodeEnumerator) obj;
Method Detail |
---|
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public void reset() throws IOException, AutomationException
reset
in interface IEnumTinElement
reset
in interface IEnumTinNode
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public ITinElement next() throws IOException, AutomationException
next
in interface IEnumTinElement
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryNext(ITinElement pElement) throws IOException, AutomationException
queryNext
in interface IEnumTinElement
pElement
- A reference to a com.esri.arcgis.geodatabase.ITinElement (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public ITinNode IEnumTinNode_next() throws IOException, AutomationException
IEnumTinNode_next
in interface IEnumTinNode
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryNext(ITinNode pNode) throws IOException, AutomationException
queryNext
in interface IEnumTinNode
pNode
- A reference to a com.esri.arcgis.geodatabase.ITinNode (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryNextAsWKSPointZ(_WKSPointZ[] pPoint, boolean[] pbIsEnd) throws IOException, AutomationException
queryNextAsWKSPointZ
in interface IEnumTinNode
pPoint
- A Structure: com.esri.arcgis.system._WKSPointZ (A com.esri.arcgis.system._WKSPointZ COM typedef) (out: use single element array)pbIsEnd
- The pbIsEnd (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void interfaceSupportsErrorInfo(GUID riid) throws IOException, AutomationException
Indicates whether the interface supports IErrorInfo.
interfaceSupportsErrorInfo
in interface ISupportErrorInfo
riid
- A Structure: com.esri.arcgis.support.ms.stdole.GUID (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |