MultiPointHandler.withType constructor

MultiPointHandler.withType(
  1. ShapeType shapeType,
  2. GeometryFactory geometryFactory
)

Implementation

MultiPointHandler.withType(this.shapeType, this.geometryFactory) {
  if (!shapeType.isMultiPointType()) {
    throw ShapefileException(
        "Multipointhandler constructor - expected type to be 8, 18, or 28");
  }
}