|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.esri.arcgis.geodatabase.ForwardStar
public class ForwardStar
COM Class 'ForwardStar'. Generated 3/19/2015 1:20:43 PM from 'C:\ArcGIS\COM\esriGeoDatabase.olb'
Description 'A container for querying information about adjacent elements in the logical network.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =
Field Summary |
---|
Fields inherited from interface com.esri.arcgis.geodatabase.IForwardStarGEN |
---|
IID, IID7ebfc159_e0da_4d21_9c3b_5d81f2e6ad9f, xxDummy |
Fields inherited from interface com.esri.arcgis.geodatabase.IForwardStar |
---|
IID, IID19f99c81_a089_11d0_9cc9_00805f74d243, xxDummy |
Constructor Summary | |
---|---|
ForwardStar(java.lang.Object obj)
Construct a ForwardStar using a reference to such an object returned from ArcGIS Engine or Server. |
Method Summary | |
---|---|
boolean |
equals(java.lang.Object o)
Compare this object with another |
void |
findAdjacent(int fromEdgeEID,
int atJunctionEID,
int[] adjacentEdgesCount)
Finds the edge elements that are adjacent to the given junction element and returns the count. |
com.esri.arcgis.interop.Dispatch |
getJintegraDispatch()
Deprecated. Internal use only. |
INetwork |
getNetwork()
Underlying network of this forward star cursor. |
int |
hashCode()
the hashcode for this object |
void |
queryAdjacentEdge(int index,
int[] adjacentEdgeEID,
boolean[] reverseOrientation,
java.lang.Object[] adjacentEdgeWeightValue)
Returns index'th adjacent edge found with FindAdjacent, its orientation, and its weight value. |
void |
queryAdjacentEdges(int[][] adjacentEdgeEIDs,
boolean[][] reverseOrientation,
java.lang.Object[][] adjacentEdgesWeightValue)
Returns the adjacent edges found with FindAdjacent into the specified user-defined array. |
void |
queryAdjacentEdges(int count,
int[] adjacentEdgeEIDs,
boolean[] reverseOrientation,
java.lang.Object[] adjacentEdgesWeightValue)
Returns the adjacent edges found with FindAdjacent into the specified user-defined array. |
void |
queryAdjacentJunction(int index,
int[] adjacentJunctionEID,
java.lang.Object[] adjacentJunctionWeightValue)
Returns the opposite junction of the index'th adjacent edge found with FindAdjacent, and the weight value for this junction. |
void |
queryAdjacentJunctions(int[][] adjacentJunctionEIDs,
java.lang.Object[][] adjacentJunctionsWeightValue)
Returns the opposite junctions of the adjacent edges found with FindAdjacent into the specified user-defined array. |
void |
queryAdjacentJunctions(int count,
int[] adjacentJunctionEIDs,
java.lang.Object[] adjacentJunctionsWeightValue)
Returns the opposite junctions of the adjacent edges found with FindAdjacent into the specified user-defined array. |
void |
queryAtTurn(int index,
int[] adjacentTurnEID,
java.lang.Object[] adjacentTurnWeightValue)
Returns the turn through which the index'th adjacent edge found with FindAdjacent passes, and the weight value of the turn. |
void |
queryAtTurns(int count,
int[] adjacentTurnEIDs,
java.lang.Object[] adjacentTurnsWeightValue)
Returns the turns through which the adjacent edges found with FindAdjacent passes into the user-defined array. |
void |
release()
Release a ForwardStar. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ForwardStar(java.lang.Object obj) throws java.io.IOException
obj
to ForwardStar
. *
ForwardStar o = (ForwardStar)obj; // will not work
ForwardStar o = new ForwardStar(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server
java.io.IOException
- if there are interop problems
ForwardStar theForwardStar = (ForwardStar) obj;
Method Detail |
---|
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public com.esri.arcgis.interop.Dispatch getJintegraDispatch()
getJintegraDispatch
in interface com.esri.arcgis.interop.RemoteObjRef
public void release()
release
in interface com.esri.arcgis.interop.RemoteObjRef
public INetwork getNetwork() throws java.io.IOException, AutomationException
getNetwork
in interface IForwardStar
getNetwork
in interface IForwardStarGEN
java.io.IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void findAdjacent(int fromEdgeEID, int atJunctionEID, int[] adjacentEdgesCount) throws java.io.IOException, AutomationException
findAdjacent
in interface IForwardStar
findAdjacent
in interface IForwardStarGEN
fromEdgeEID
- The fromEdgeEID (in)atJunctionEID
- The atJunctionEID (in)adjacentEdgesCount
- The adjacentEdgesCount (out: use single element array)
java.io.IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryAdjacentJunction(int index, int[] adjacentJunctionEID, java.lang.Object[] adjacentJunctionWeightValue) throws java.io.IOException, AutomationException
queryAdjacentJunction
in interface IForwardStar
queryAdjacentJunction
in interface IForwardStarGEN
index
- The index (in)adjacentJunctionEID
- The adjacentJunctionEID (out: use single element array)adjacentJunctionWeightValue
- A Variant (out: use single element array)
java.io.IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryAdjacentEdge(int index, int[] adjacentEdgeEID, boolean[] reverseOrientation, java.lang.Object[] adjacentEdgeWeightValue) throws java.io.IOException, AutomationException
queryAdjacentEdge
in interface IForwardStar
queryAdjacentEdge
in interface IForwardStarGEN
index
- The index (in)adjacentEdgeEID
- The adjacentEdgeEID (out: use single element array)reverseOrientation
- The reverseOrientation (out: use single element array)adjacentEdgeWeightValue
- A Variant (out: use single element array)
java.io.IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryAtTurn(int index, int[] adjacentTurnEID, java.lang.Object[] adjacentTurnWeightValue) throws java.io.IOException, AutomationException
queryAtTurn
in interface IForwardStar
queryAtTurn
in interface IForwardStarGEN
index
- The index (in)adjacentTurnEID
- The adjacentTurnEID (out: use single element array)adjacentTurnWeightValue
- A Variant (out: use single element array)
java.io.IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryAdjacentJunctions(int[][] adjacentJunctionEIDs, java.lang.Object[][] adjacentJunctionsWeightValue) throws java.io.IOException, AutomationException
queryAdjacentJunctions
in interface IForwardStarGEN
adjacentJunctionEIDs
- The adjacentJunctionEIDs (in/out: use single element array)adjacentJunctionsWeightValue
- A Variant (in/out: use single element array)
java.io.IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryAdjacentEdges(int[][] adjacentEdgeEIDs, boolean[][] reverseOrientation, java.lang.Object[][] adjacentEdgesWeightValue) throws java.io.IOException, AutomationException
queryAdjacentEdges
in interface IForwardStarGEN
adjacentEdgeEIDs
- The adjacentEdgeEIDs (in/out: use single element array)reverseOrientation
- The reverseOrientation (in/out: use single element array)adjacentEdgesWeightValue
- A Variant (in/out: use single element array)
java.io.IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryAdjacentJunctions(int count, int[] adjacentJunctionEIDs, java.lang.Object[] adjacentJunctionsWeightValue) throws java.io.IOException, AutomationException
queryAdjacentJunctions
in interface IForwardStar
count
- The count (in)adjacentJunctionEIDs
- The adjacentJunctionEIDs (out: use single element array)adjacentJunctionsWeightValue
- A Variant (out: use single element array)
java.io.IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryAdjacentEdges(int count, int[] adjacentEdgeEIDs, boolean[] reverseOrientation, java.lang.Object[] adjacentEdgesWeightValue) throws java.io.IOException, AutomationException
queryAdjacentEdges
in interface IForwardStar
count
- The count (in)adjacentEdgeEIDs
- The adjacentEdgeEIDs (out: use single element array)reverseOrientation
- The reverseOrientation (out: use single element array)adjacentEdgesWeightValue
- A Variant (out: use single element array)
java.io.IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryAtTurns(int count, int[] adjacentTurnEIDs, java.lang.Object[] adjacentTurnsWeightValue) throws java.io.IOException, AutomationException
queryAtTurns
in interface IForwardStar
count
- The count (in)adjacentTurnEIDs
- The adjacentTurnEIDs (out: use single element array)adjacentTurnsWeightValue
- A Variant (out: use single element array)
java.io.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 |