readPointText method

Point readPointText(
  1. WKTTokenizer tokenizer,
  2. List<Ordinate> ordinateFlags
)

Creates a Point using the next token in the stream.

@param tokenizer tokenizer over a stream of text in Well-known Text format. The next tokens must form a <Point Text>. @return a Point specified by the next token in the stream @throws IOException if an I/O error occurs @throws ParseException if an unexpected token was encountered

Implementation

Point readPointText(WKTTokenizer tokenizer, List<Ordinate> ordinateFlags) {
  Point point = geometryFactory
      .createPointSeq(getCoordinateSequence(tokenizer, ordinateFlags));
  return point;
}