public interface IDirectPositionIterator
IDirectPositions.| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNext()
Returns
true if this IDirectPositionIterator has more DirectPosition's; false if not. |
com.mapinfo.midev.geometry.DirectPosition |
nextDirectPosition(com.mapinfo.midev.geometry.DirectPosition dp)
Returns the next
DirectPosition from this DirectPositionIterator. |
boolean hasNext()
true if this IDirectPositionIterator has more DirectPosition's; false if not.true if this IDirectPositionIterator has more DirectPosition's; false if not.com.mapinfo.midev.geometry.DirectPosition nextDirectPosition(com.mapinfo.midev.geometry.DirectPosition dp)
throws ConcurrentModificationException
DirectPosition from this DirectPositionIterator. The specified
DirectPosition will be filled with the state of the next DirectPosition and also
returned by this method.dp - the DirectPosition to copy into, cannot be null.DirectPosition from this DirectPositionIterator.ConcurrentModificationException - if the target of this iterator is concurrently modified in
an unpermissible way while this iterator is in use.