abstract class CoordinateOperation extends GeometryEditorOperation
A {link GeometryEditorOperation} which edits the coordinate list of a {link Geometry}. Operates on Geometry subclasses which contains a single coordinate list.
- Alphabetic
- By Inheritance
- CoordinateOperation
- GeometryEditorOperation
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new CoordinateOperation()
Abstract Value Members
- abstract def edit(coordinates: Array[Coordinate], geometry: Geometry): Array[Coordinate]
Edits the array of {link Coordinate}s from a {link Geometry}.
Edits the array of {link Coordinate}s from a {link Geometry}.
If it is desired to preserve the immutability of Geometrys, if the coordinates are changed a new array should be created and returned.
- coordinates
the coordinate array to operate on
- geometry
the geometry containing the coordinate list return an edited coordinate array (which may be the same as the input)
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def edit(geometry: Geometry, factory: GeometryFactory): Geometry
Edits a Geometry by returning a new Geometry with a modification.
Edits a Geometry by returning a new Geometry with a modification. The returned geometry may be:
- the input geometry itself. The returned Geometry might be the same as the Geometry passed in.
nullif the geometry is to be deleted.
- geometry
the Geometry to modify
- factory
the factory with which to construct the modified Geometry (may be different to the factory of the input geometry) return a new Geometry which is a modification of the input Geometry return null if the Geometry is to be deleted completely
- Definition Classes
- CoordinateOperation → GeometryEditorOperation
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()