org.cts.crs
Enum CoordinateReferenceSystem.Type

java.lang.Object
  extended by java.lang.Enum<CoordinateReferenceSystem.Type>
      extended by org.cts.crs.CoordinateReferenceSystem.Type
All Implemented Interfaces:
Serializable, Comparable<CoordinateReferenceSystem.Type>
Enclosing interface:
CoordinateReferenceSystem

public static enum CoordinateReferenceSystem.Type
extends Enum<CoordinateReferenceSystem.Type>

Coordinate Reference System Type.


Enum Constant Summary
COMPOUND
           
ENGINEERING
           
GEOCENTRIC
           
GEOGRAPHIC2D
           
GEOGRAPHIC3D
           
PROJECTED
           
VERTICAL
           
 
Method Summary
static CoordinateReferenceSystem.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CoordinateReferenceSystem.Type[] 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

GEOCENTRIC

public static final CoordinateReferenceSystem.Type GEOCENTRIC

GEOGRAPHIC3D

public static final CoordinateReferenceSystem.Type GEOGRAPHIC3D

GEOGRAPHIC2D

public static final CoordinateReferenceSystem.Type GEOGRAPHIC2D

PROJECTED

public static final CoordinateReferenceSystem.Type PROJECTED

VERTICAL

public static final CoordinateReferenceSystem.Type VERTICAL

COMPOUND

public static final CoordinateReferenceSystem.Type COMPOUND

ENGINEERING

public static final CoordinateReferenceSystem.Type ENGINEERING
Method Detail

values

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

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

valueOf

public static CoordinateReferenceSystem.Type 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 © 2014 IRSTV CNRS-FR-2488. All Rights Reserved.