de.cesr.more.param
Enum MBasicPa

java.lang.Object
  extended by java.lang.Enum<MBasicPa>
      extended by de.cesr.more.param.MBasicPa
All Implemented Interfaces:
de.cesr.parma.core.PmParameterDefinition, Serializable, Comparable<MBasicPa>

public enum MBasicPa
extends Enum<MBasicPa>
implements de.cesr.parma.core.PmParameterDefinition

Basic parameter definitions for MORe (e.g. Torus boundaries)

Date:
29.06.2010

Enum Constant Summary
ROOT_GEOGRAPHY
          Geography in the RS root context
SPATIALREFERENCEID
          Used to initialise the GeometryFactory.
TORUS_FIELD_LOWER_X
          Lower X corner coordinate of the torus used in MTorusCoordinate to calculate distances.
TORUS_FIELD_LOWER_Y
          Lower Y corner coordinate of the torus used in MTorusCoordinate to calculate distances.
TORUS_FIELD_UPPER_X
          Upper X corner coordinate of the torus used in MTorusCoordinate to calculate distances.
TORUS_FIELD_UPPER_Y
          Upper Y corner coordinate of the torus used in MTorusCoordinate to calculate distances.
 
Method Summary
 Object getDefaultValue()
           
 Class<?> getType()
           
static MBasicPa valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MBasicPa[] 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
 
Methods inherited from interface de.cesr.parma.core.PmParameterDefinition
getDeclaringClass
 

Enum Constant Detail

TORUS_FIELD_LOWER_X

public static final MBasicPa TORUS_FIELD_LOWER_X
Lower X corner coordinate of the torus used in MTorusCoordinate to calculate distances.


TORUS_FIELD_LOWER_Y

public static final MBasicPa TORUS_FIELD_LOWER_Y
Lower Y corner coordinate of the torus used in MTorusCoordinate to calculate distances.


TORUS_FIELD_UPPER_X

public static final MBasicPa TORUS_FIELD_UPPER_X
Upper X corner coordinate of the torus used in MTorusCoordinate to calculate distances.


TORUS_FIELD_UPPER_Y

public static final MBasicPa TORUS_FIELD_UPPER_Y
Upper Y corner coordinate of the torus used in MTorusCoordinate to calculate distances.


SPATIALREFERENCEID

public static final MBasicPa SPATIALREFERENCEID
Used to initialise the GeometryFactory. Should be UTM


ROOT_GEOGRAPHY

public static final MBasicPa ROOT_GEOGRAPHY
Geography in the RS root context

Method Detail

values

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

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

valueOf

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

getType

public Class<?> getType()
Specified by:
getType in interface de.cesr.parma.core.PmParameterDefinition

getDefaultValue

public Object getDefaultValue()
Specified by:
getDefaultValue in interface de.cesr.parma.core.PmParameterDefinition