Class WKTConstants

 1 /*
 2  * Copyright (c) 2020 Martin Davis.
 3  *
 4  * All rights reserved. This program and the accompanying materials
 5  * are made available under the terms of the Eclipse Public License 2.0
 6  * and Eclipse Distribution License v. 1.0 which accompanies this distribution.
 7  * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v20.html
 8  * and the Eclipse Distribution License is available at
 9  *
10  * http://www.eclipse.org/org/documents/edl-v10.php.
11  */
12 package org.locationtech.jts.io;
13  
14 /**
15  * Constants used in the WKT (Well-Known Text) format.
16  * 
17  * @author Martin Davis
18  *
19  */
20 public class WKTConstants {
21  
22   public static final String GEOMETRYCOLLECTION = "GEOMETRYCOLLECTION";
23   public static final String LINEARRING = "LINEARRING";
24   public static final String LINESTRING = "LINESTRING";
25   public static final String MULTIPOLYGON = "MULTIPOLYGON";
26   public static final String MULTILINESTRING = "MULTILINESTRING";
27   public static final String MULTIPOINT = "MULTIPOINT";
28   public static final String POINT = "POINT";
29   public static final String POLYGON = "POLYGON";
30   
31   public static final String EMPTY = "EMPTY";
32  
33   public static final String M = "M";
34   public static final String Z = "Z";
35   public static final String ZM = "ZM";
36  
37 }
38