PackedCoordinateSequenceFactory.withType constructor

PackedCoordinateSequenceFactory.withType(
  1. int type
)

Creates a new PackedCoordinateSequenceFactory of the given type. Acceptable type values are {@linkplain PackedCoordinateSequenceFactory#FLOAT}or {@linkplain PackedCoordinateSequenceFactory#DOUBLE}

Implementation

PackedCoordinateSequenceFactory.withType(int type) {
  this.type = type;
}