|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.networkanalysis.EIDInfo
public class EIDInfo
Contains the feature and geometry for a given eid.
Constructor Summary | |
---|---|
EIDInfo(Object obj)
Construct a EIDInfo 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 |
getEID()
Network element ID with which the feature and geometry are associated. |
IFeature |
getFeature()
Feature associated with this network element ID. |
IGeometry |
getGeometry()
Geometry associated with this network element ID. |
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 |
---|
public EIDInfo(Object obj) throws IOException
obj
to EIDInfo
. *
EIDInfo o = (EIDInfo)obj; // will not work
EIDInfo o = new EIDInfo(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server
IOException
- if there are interop problems
EIDInfo theEIDInfo = (EIDInfo) obj;
Method Detail |
---|
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public IGeometry getGeometry() throws IOException, AutomationException
The Geometry will be null if either:
getGeometry
in interface IEIDInfo
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IFeature getFeature() throws IOException, AutomationException
The Feature will be null if either:
getFeature
in interface IEIDInfo
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getEID() throws IOException, AutomationException
getEID
in interface IEIDInfo
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 |