|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.vividsolutions.jts.geom.impl.CoordinateArraySequenceFactory
public final class CoordinateArraySequenceFactory
Creates CoordinateSequence
s represented as an array of Coordinate
s.
Method Summary | |
---|---|
CoordinateSequence |
create(Coordinate[] coordinates)
Returns a CoordinateArraySequence based on the given array (the array is
not copied). |
CoordinateSequence |
create(CoordinateSequence coordSeq)
Creates a CoordinateSequence which is a copy
of the given CoordinateSequence . |
CoordinateSequence |
create(int size,
int dimension)
Creates a CoordinateSequence of the specified size and dimension. |
static CoordinateArraySequenceFactory |
instance()
Returns the singleton instance of CoordinateArraySequenceFactory |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static CoordinateArraySequenceFactory instance()
CoordinateArraySequenceFactory
public CoordinateSequence create(Coordinate[] coordinates)
CoordinateArraySequence
based on the given array (the array is
not copied).
create
in interface CoordinateSequenceFactory
coordinates
- the coordinates, which may not be null nor contain null
elementspublic CoordinateSequence create(CoordinateSequence coordSeq)
CoordinateSequenceFactory
CoordinateSequence
which is a copy
of the given CoordinateSequence
.
This method must handle null arguments by creating an empty sequence.
create
in interface CoordinateSequenceFactory
coordSeq
- the coordinate sequence to copyCoordinateSequenceFactory.create(com.vividsolutions.jts.geom.CoordinateSequence)
public CoordinateSequence create(int size, int dimension)
CoordinateSequenceFactory
CoordinateSequence
of the specified size and dimension.
For this to be useful, the CoordinateSequence
implementation must
be mutable.
create
in interface CoordinateSequenceFactory
size
- the number of coordinates in the sequencedimension
- the dimension of the coordinates in the sequence (if user-specifiable,
otherwise ignored)
java.lang.IllegalArgumentException
- if the dimension is > 3CoordinateSequenceFactory.create(int, int)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |