org.deegree.geometry.io
Enum WKTWriter.WKTFlag

java.lang.Object
  extended by java.lang.Enum<WKTWriter.WKTFlag>
      extended by org.deegree.geometry.io.WKTWriter.WKTFlag
All Implemented Interfaces:
Serializable, Comparable<WKTWriter.WKTFlag>
Enclosing class:
WKTWriter

public static enum WKTWriter.WKTFlag
extends Enum<WKTWriter.WKTFlag>

The flag is used to specify which geometric operations the database is capable of

Version:
$Revision: 31641 $, $Date: 2011-08-24 21:24:55 +0200 (Wed, 24 Aug 2011) $
Author:
Steffen Thomas, last edited by: $Author: mschneider $

Enum Constant Summary
USE_3D
          Export can use 3D geometries
USE_COMPOSITES
          COMPOSITEGEOMETRY(), COMPOSITECURVE(), COMPOSITESOLID()
USE_DKT
          Use deegree-WKT-extensions (object ids, properties, all geometry types)
USE_ENVELOPE
          Export can use ENVELOPE
USE_LINEARIZATION
          If necessary, linearize curves / surface boundaries.
USE_LINEARRING
          Export can use LINEARRING(...)
USE_SQL_MM
          Export can use CIRCULARSTRING(...), COMPOUNDSTRING(...), ...
 
Method Summary
static WKTWriter.WKTFlag valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WKTWriter.WKTFlag[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

USE_ENVELOPE

public static final WKTWriter.WKTFlag USE_ENVELOPE
Export can use ENVELOPE


USE_3D

public static final WKTWriter.WKTFlag USE_3D
Export can use 3D geometries


USE_LINEARRING

public static final WKTWriter.WKTFlag USE_LINEARRING
Export can use LINEARRING(...)


USE_SQL_MM

public static final WKTWriter.WKTFlag USE_SQL_MM
Export can use CIRCULARSTRING(...), COMPOUNDSTRING(...), ...


USE_LINEARIZATION

public static final WKTWriter.WKTFlag USE_LINEARIZATION
If necessary, linearize curves / surface boundaries.


USE_COMPOSITES

public static final WKTWriter.WKTFlag USE_COMPOSITES
COMPOSITEGEOMETRY(), COMPOSITECURVE(), COMPOSITESOLID()


USE_DKT

public static final WKTWriter.WKTFlag USE_DKT
Use deegree-WKT-extensions (object ids, properties, all geometry types)

Method Detail

values

public static WKTWriter.WKTFlag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (WKTWriter.WKTFlag c : WKTWriter.WKTFlag.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static WKTWriter.WKTFlag valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2011. All Rights Reserved.