de.tub.citydb.api.database
Enum DatabaseSrsType
java.lang.Object
java.lang.Enum<DatabaseSrsType>
de.tub.citydb.api.database.DatabaseSrsType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DatabaseSrsType>
public enum DatabaseSrsType
- extends java.lang.Enum<DatabaseSrsType>
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 |
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
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>