de.tub.citydb.api.database
Enum DatabaseSrsType

java.lang.Object
  extended by java.lang.Enum<DatabaseSrsType>
      extended by de.tub.citydb.api.database.DatabaseSrsType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DatabaseSrsType>

public enum DatabaseSrsType
extends java.lang.Enum<DatabaseSrsType>


Enum Constant Summary
COMPOUND
           
ENGINEERING
           
GEOCENTRIC
           
GEOGENTRIC
           
GEOGRAPHIC2D
           
GEOGRAPHIC3D
           
PROJECTED
           
UNKNOWN
           
VERTICAL
           
 
Method Summary
static DatabaseSrsType fromValue(java.lang.String v)
           
 java.lang.String toString()
           
 java.lang.String value()
           
static DatabaseSrsType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DatabaseSrsType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PROJECTED

public static final DatabaseSrsType PROJECTED

GEOGRAPHIC2D

public static final DatabaseSrsType GEOGRAPHIC2D

GEOCENTRIC

public static final DatabaseSrsType GEOCENTRIC

VERTICAL

public static final DatabaseSrsType VERTICAL

ENGINEERING

public static final DatabaseSrsType ENGINEERING

COMPOUND

public static final DatabaseSrsType COMPOUND

GEOGENTRIC

public static final DatabaseSrsType GEOGENTRIC

GEOGRAPHIC3D

public static final DatabaseSrsType GEOGRAPHIC3D

UNKNOWN

public static final DatabaseSrsType UNKNOWN
Method Detail

values

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

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

valueOf

public static DatabaseSrsType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public java.lang.String value()

fromValue

public static DatabaseSrsType fromValue(java.lang.String v)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<DatabaseSrsType>