File: WKTConstants.java

package info (click to toggle)
jts 1.18.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 52,948 kB
  • sloc: java: 105,990; xml: 50,581; ruby: 82; makefile: 29; sh: 15
file content (37 lines) | stat: -rw-r--r-- 1,254 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * Copyright (c) 2020 Martin Davis.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * and Eclipse Distribution License v. 1.0 which accompanies this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v20.html
 * and the Eclipse Distribution License is available at
 *
 * http://www.eclipse.org/org/documents/edl-v10.php.
 */
package org.locationtech.jts.io;

/**
 * Constants used in the WKT (Well-Known Text) format.
 * 
 * @author Martin Davis
 *
 */
public class WKTConstants {

  public static final String GEOMETRYCOLLECTION = "GEOMETRYCOLLECTION";
  public static final String LINEARRING = "LINEARRING";
  public static final String LINESTRING = "LINESTRING";
  public static final String MULTIPOLYGON = "MULTIPOLYGON";
  public static final String MULTILINESTRING = "MULTILINESTRING";
  public static final String MULTIPOINT = "MULTIPOINT";
  public static final String POINT = "POINT";
  public static final String POLYGON = "POLYGON";
  
  public static final String EMPTY = "EMPTY";

  public static final String M = "M";
  public static final String Z = "Z";
  public static final String ZM = "ZM";

}