org.deegree.feature.persistence.sql.jaxb
Enum GeometryType

java.lang.Object
  extended by java.lang.Enum<GeometryType>
      extended by org.deegree.feature.persistence.sql.jaxb.GeometryType
All Implemented Interfaces:
Serializable, Comparable<GeometryType>

public enum GeometryType
extends Enum<GeometryType>

Java class for GeometryType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="GeometryType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Geometry"/>
     <enumeration value="PrimitiveGeometry"/>
     <enumeration value="CompositeGeometry"/>
     <enumeration value="Point"/>
     <enumeration value="Curve"/>
     <enumeration value="LineString"/>
     <enumeration value="Ring"/>
     <enumeration value="LinearRing"/>
     <enumeration value="OrientableCurve"/>
     <enumeration value="CompositeCurve"/>
     <enumeration value="Surface"/>
     <enumeration value="PolyhedralSurface"/>
     <enumeration value="TriangulatedSurface"/>
     <enumeration value="Tin"/>
     <enumeration value="Polygon"/>
     <enumeration value="OrientableSurface"/>
     <enumeration value="CompositeSurface"/>
     <enumeration value="Solid"/>
     <enumeration value="CompositeSolid"/>
     <enumeration value="MultiGeometry"/>
     <enumeration value="MultiPoint"/>
     <enumeration value="MultiCurve"/>
     <enumeration value="MultiLineString"/>
     <enumeration value="MultiSurface"/>
     <enumeration value="MultiPolygon"/>
     <enumeration value="MultiSolid"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
COMPOSITE_CURVE
           
COMPOSITE_GEOMETRY
           
COMPOSITE_SOLID
           
COMPOSITE_SURFACE
           
CURVE
           
GEOMETRY
           
LINE_STRING
           
LINEAR_RING
           
MULTI_CURVE
           
MULTI_GEOMETRY
           
MULTI_LINE_STRING
           
MULTI_POINT
           
MULTI_POLYGON
           
MULTI_SOLID
           
MULTI_SURFACE
           
ORIENTABLE_CURVE
           
ORIENTABLE_SURFACE
           
POINT
           
POLYGON
           
POLYHEDRAL_SURFACE
           
PRIMITIVE_GEOMETRY
           
RING
           
SOLID
           
SURFACE
           
TIN
           
TRIANGULATED_SURFACE
           
 
Method Summary
static GeometryType fromValue(String v)
           
 String value()
           
static GeometryType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GeometryType[] 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

GEOMETRY

public static final GeometryType GEOMETRY

PRIMITIVE_GEOMETRY

public static final GeometryType PRIMITIVE_GEOMETRY

COMPOSITE_GEOMETRY

public static final GeometryType COMPOSITE_GEOMETRY

POINT

public static final GeometryType POINT

CURVE

public static final GeometryType CURVE

LINE_STRING

public static final GeometryType LINE_STRING

RING

public static final GeometryType RING

LINEAR_RING

public static final GeometryType LINEAR_RING

ORIENTABLE_CURVE

public static final GeometryType ORIENTABLE_CURVE

COMPOSITE_CURVE

public static final GeometryType COMPOSITE_CURVE

SURFACE

public static final GeometryType SURFACE

POLYHEDRAL_SURFACE

public static final GeometryType POLYHEDRAL_SURFACE

TRIANGULATED_SURFACE

public static final GeometryType TRIANGULATED_SURFACE

TIN

public static final GeometryType TIN

POLYGON

public static final GeometryType POLYGON

ORIENTABLE_SURFACE

public static final GeometryType ORIENTABLE_SURFACE

COMPOSITE_SURFACE

public static final GeometryType COMPOSITE_SURFACE

SOLID

public static final GeometryType SOLID

COMPOSITE_SOLID

public static final GeometryType COMPOSITE_SOLID

MULTI_GEOMETRY

public static final GeometryType MULTI_GEOMETRY

MULTI_POINT

public static final GeometryType MULTI_POINT

MULTI_CURVE

public static final GeometryType MULTI_CURVE

MULTI_LINE_STRING

public static final GeometryType MULTI_LINE_STRING

MULTI_SURFACE

public static final GeometryType MULTI_SURFACE

MULTI_POLYGON

public static final GeometryType MULTI_POLYGON

MULTI_SOLID

public static final GeometryType MULTI_SOLID
Method Detail

values

public static GeometryType[] 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 (GeometryType c : GeometryType.values())
    System.out.println(c);

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

valueOf

public static GeometryType 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

value

public String value()

fromValue

public static GeometryType fromValue(String v)


Copyright © 2011. All Rights Reserved.