org.openstreetmap.josm.data.projection
Enum CustomProjection.Param

java.lang.Object
  extended by java.lang.Enum<CustomProjection.Param>
      extended by org.openstreetmap.josm.data.projection.CustomProjection.Param
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CustomProjection.Param>
Enclosing class:
CustomProjection

protected static enum CustomProjection.Param
extends java.lang.Enum<CustomProjection.Param>


Enum Constant Summary
a
           
b
           
bounds
           
datum
           
ellps
           
es
           
f
           
init
           
k_0
           
lat_0
           
lat_1
           
lat_2
           
lon_0
           
nadgrids
           
no_defs
           
proj
           
rf
           
towgs84
           
units
           
wktext
           
x_0
           
y_0
           
 
Field Summary
 boolean hasValue
           
 java.lang.String key
           
static java.util.Map<java.lang.String,CustomProjection.Param> paramsByKey
           
 
Method Summary
static CustomProjection.Param valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CustomProjection.Param[] 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

x_0

public static final CustomProjection.Param x_0

y_0

public static final CustomProjection.Param y_0

lon_0

public static final CustomProjection.Param lon_0

k_0

public static final CustomProjection.Param k_0

ellps

public static final CustomProjection.Param ellps

a

public static final CustomProjection.Param a

es

public static final CustomProjection.Param es

rf

public static final CustomProjection.Param rf

f

public static final CustomProjection.Param f

b

public static final CustomProjection.Param b

datum

public static final CustomProjection.Param datum

towgs84

public static final CustomProjection.Param towgs84

nadgrids

public static final CustomProjection.Param nadgrids

proj

public static final CustomProjection.Param proj

lat_0

public static final CustomProjection.Param lat_0

lat_1

public static final CustomProjection.Param lat_1

lat_2

public static final CustomProjection.Param lat_2

wktext

public static final CustomProjection.Param wktext

units

public static final CustomProjection.Param units

no_defs

public static final CustomProjection.Param no_defs

init

public static final CustomProjection.Param init

bounds

public static final CustomProjection.Param bounds
Field Detail

key

public java.lang.String key

hasValue

public boolean hasValue

paramsByKey

public static final java.util.Map<java.lang.String,CustomProjection.Param> paramsByKey
Method Detail

values

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

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

valueOf

public static CustomProjection.Param 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


JOSM