|
JTS Topology Suite version 1.12 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList
com.vividsolutions.jts.geom.CoordinateList
public class CoordinateList
A list of Coordinates, which may
be set to prevent repeated coordinates from occuring in the list.
| Field Summary |
|---|
| Fields inherited from class java.util.AbstractList |
|---|
modCount |
| Constructor Summary | |
|---|---|
CoordinateList()
Constructs a new list without any coordinates |
|
CoordinateList(Coordinate[] coord)
Constructs a new list from an array of Coordinates, allowing repeated points. |
|
CoordinateList(Coordinate[] coord,
boolean allowRepeated)
Constructs a new list from an array of Coordinates, allowing caller to specify if repeated points are to be removed. |
|
| Method Summary | |
|---|---|
boolean |
add(Coordinate[] coord,
boolean allowRepeated)
Adds an array of coordinates to the list. |
boolean |
add(Coordinate[] coord,
boolean allowRepeated,
boolean direction)
Adds an array of coordinates to the list. |
boolean |
add(Coordinate[] coord,
boolean allowRepeated,
int start,
int end)
Adds a section of an array of coordinates to the list. |
void |
add(Coordinate coord,
boolean allowRepeated)
Adds a coordinate to the end of the list. |
void |
add(int i,
Coordinate coord,
boolean allowRepeated)
Inserts the specified coordinate at the specified position in this list. |
boolean |
add(java.lang.Object obj,
boolean allowRepeated)
Adds a coordinate to the list. |
boolean |
addAll(java.util.Collection coll,
boolean allowRepeated)
Add an array of coordinates |
java.lang.Object |
clone()
Returns a deep copy of this CoordinateList instance. |
void |
closeRing()
Ensure this coordList is a ring, by adding the start point if necessary |
Coordinate |
getCoordinate(int i)
|
Coordinate[] |
toCoordinateArray()
Returns the Coordinates in this collection. |
| Methods inherited from class java.util.ArrayList |
|---|
add, add, addAll, addAll, clear, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, removeRange, set, size, toArray, toArray, trimToSize |
| Methods inherited from class java.util.AbstractList |
|---|
equals, hashCode, iterator, listIterator, listIterator, subList |
| Methods inherited from class java.util.AbstractCollection |
|---|
containsAll, removeAll, retainAll, toString |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.List |
|---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList |
| Constructor Detail |
|---|
public CoordinateList()
public CoordinateList(Coordinate[] coord)
CoordinateList with exactly the same set of points
as the input array.)
coord - the initial coordinates
public CoordinateList(Coordinate[] coord,
boolean allowRepeated)
coord - the array of coordinates to load into the listallowRepeated - if false, repeated points are removed| Method Detail |
|---|
public Coordinate getCoordinate(int i)
public boolean add(Coordinate[] coord,
boolean allowRepeated,
int start,
int end)
coord - The coordinatesallowRepeated - if set to false, repeated coordinates are collapsedstart - the index to start fromend - the index to add up to but not including
public boolean add(Coordinate[] coord,
boolean allowRepeated,
boolean direction)
coord - The coordinatesallowRepeated - if set to false, repeated coordinates are collapseddirection - if false, the array is added in reverse order
public boolean add(Coordinate[] coord,
boolean allowRepeated)
coord - The coordinatesallowRepeated - if set to false, repeated coordinates are collapsed
public boolean add(java.lang.Object obj,
boolean allowRepeated)
obj - The coordinate to addallowRepeated - if set to false, repeated coordinates are collapsed
public void add(Coordinate coord,
boolean allowRepeated)
coord - The coordinatesallowRepeated - if set to false, repeated coordinates are collapsed
public void add(int i,
Coordinate coord,
boolean allowRepeated)
i - the position at which to insertcoord - the coordinate to insertallowRepeated - if set to false, repeated coordinates are collapsed
public boolean addAll(java.util.Collection coll,
boolean allowRepeated)
coll - The coordinatesallowRepeated - if set to false, repeated coordinates are collapsed
public void closeRing()
public Coordinate[] toCoordinateArray()
public java.lang.Object clone()
clone in class java.util.ArrayList
|
JTS Topology Suite version 1.12 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||