Class SegmentIteratorImpl
java.lang.Object
com.esri.core.geometry.SegmentIteratorImpl
Provides functionality to iterate over MultiPath segments.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanprotected booleanprotected intprotected Segmentprotected intprotected Point2Dprotected Lineprotected intprotected intprotected MultiPathImplprotected intprotected intprotected intprotected int -
Constructor Summary
ConstructorsConstructorDescriptionSegmentIteratorImpl(MultiPathImpl parent) SegmentIteratorImpl(MultiPathImpl parent, int pointIndex) SegmentIteratorImpl(MultiPathImpl parent, int pathIndex, int segmentIndex) -
Method Summary
Modifier and TypeMethodDescriptionintint_getSegmentCount(int pathIndex) voidcopy()intReturns the index of the end Point of the current Segment.intReturns the index of the current path.intReturns the index of the start Point of the current Segment.booleanReturns True if the call to the NextSegment will succeed.booleanReturns True if the call to the NextSegment will succeed.booleanReturns True, if the segment is the closing segment of the closed pathbooleanReturns True if the segment is first one in the current Path.(package private) booleanbooleanReturns True if the segment is last one in the current Path.Moves the iterator to the next curve segment and returns the segment.booleannextPath()Moves the iterator to next path and returns true if successful.Moves the iterator to next segment and returns the segment.booleanMoves the iterator to next path and returns true if successful.Moves the iterator to previous segment and returns the segment.(package private) voidvoidResets the iterator such that the subsequent call to the NextPath will set the iterator to the first segment of the first path.voidResets the iterator so that the call to NextSegment will return the first segment of the current path.voidResets the iterator such that the subsequent call to the PreviousPath will set the iterator to the last segment of the last path.voidResets the iterator so that the call to PreviousSegment will return the last segment of the current path.voidresetToPath(int pathIndex) Resets the iterator such that the subsequent call to the NextPath will set the iterator to the first segment of the given path.voidresetToVertex(int vertexIndex) voidresetToVertex(int vertexIndex, int _pathIndex) voidsetCirculator(boolean bYesNo) Switches the iterator navigation mode.
-
Field Details
-
m_line
-
m_currentSegment
-
m_dummyPoint
-
m_currentPathIndex
protected int m_currentPathIndex -
m_nextPathIndex
protected int m_nextPathIndex -
m_prevPathIndex
protected int m_prevPathIndex -
m_currentSegmentIndex
protected int m_currentSegmentIndex -
m_nextSegmentIndex
protected int m_nextSegmentIndex -
m_prevSegmentIndex
protected int m_prevSegmentIndex -
m_segmentCount
protected int m_segmentCount -
m_pathBegin
protected int m_pathBegin -
m_parent
-
m_bCirculator
protected boolean m_bCirculator -
m_bNeedsUpdate
protected boolean m_bNeedsUpdate
-
-
Constructor Details
-
SegmentIteratorImpl
-
SegmentIteratorImpl
-
SegmentIteratorImpl
-
-
Method Details
-
resetTo
-
nextCurve
Moves the iterator to the next curve segment and returns the segment. The Segment is returned by value and is owned by the iterator. Note: The method can return null if there are no curves in the part. -
nextSegment
Moves the iterator to next segment and returns the segment. The Segment is returned by value and is owned by the iterator. -
previousSegment
Moves the iterator to previous segment and returns the segment. The Segment is returned by value and is owned by the iterator. -
resetToFirstSegment
public void resetToFirstSegment()Resets the iterator so that the call to NextSegment will return the first segment of the current path. -
resetToLastSegment
public void resetToLastSegment()Resets the iterator so that the call to PreviousSegment will return the last segment of the current path. -
resetToVertex
public void resetToVertex(int vertexIndex) -
resetToVertex
public void resetToVertex(int vertexIndex, int _pathIndex) -
nextPath
public boolean nextPath()Moves the iterator to next path and returns true if successful. -
previousPath
public boolean previousPath()Moves the iterator to next path and returns true if successful. -
resetToFirstPath
public void resetToFirstPath()Resets the iterator such that the subsequent call to the NextPath will set the iterator to the first segment of the first path. -
resetToLastPath
public void resetToLastPath()Resets the iterator such that the subsequent call to the PreviousPath will set the iterator to the last segment of the last path. -
resetToPath
public void resetToPath(int pathIndex) Resets the iterator such that the subsequent call to the NextPath will set the iterator to the first segment of the given path. The call to PreviousPath will reset the iterator to the last segment of path pathIndex - 1. -
_getSegmentCount
public int _getSegmentCount(int pathIndex) -
isClosingSegment
public boolean isClosingSegment()Returns True, if the segment is the closing segment of the closed path -
setCirculator
public void setCirculator(boolean bYesNo) Switches the iterator navigation mode.- Parameters:
bYesNo- If True, the iterator loops over the current path infinitely (unless the MultiPath is empty).
-
getPathIndex
public int getPathIndex()Returns the index of the current path. -
getStartPointIndex
public int getStartPointIndex()Returns the index of the start Point of the current Segment. -
_getPathBegin
public int _getPathBegin() -
getEndPointIndex
public int getEndPointIndex()Returns the index of the end Point of the current Segment. -
isFirstSegmentInPath
public boolean isFirstSegmentInPath()Returns True if the segment is first one in the current Path. -
isLastSegmentInPath
public boolean isLastSegmentInPath()Returns True if the segment is last one in the current Path. -
hasNextSegment
public boolean hasNextSegment()Returns True if the call to the NextSegment will succeed. -
hasPreviousSegment
public boolean hasPreviousSegment()Returns True if the call to the NextSegment will succeed. -
copy
-
_updateSegment
public void _updateSegment() -
isLastPath
boolean isLastPath()
-