org.opengts.util
Enum GeoPoint.DistanceUnits

java.lang.Object
  extended by java.lang.Enum<GeoPoint.DistanceUnits>
      extended by org.opengts.util.GeoPoint.DistanceUnits
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GeoPoint.DistanceUnits>, EnumTools.IntValue, EnumTools.StringLocale
Enclosing class:
GeoPoint

public static enum GeoPoint.DistanceUnits
extends java.lang.Enum<GeoPoint.DistanceUnits>
implements EnumTools.StringLocale, EnumTools.IntValue

DistanceUnits enumerated type


Enum Constant Summary
FEET
           
KILOMETERS
           
METERS
           
MILES
           
NAUTICAL_MILES
           
 
Method Summary
 double convertFromKM(double v)
           
 double convertToKM(double v)
           
 int getIntValue()
           
 java.lang.String toDistanceAbbr()
           
 java.lang.String toDistanceAbbr(java.util.Locale loc)
           
 java.lang.String toSpeedAbbr()
           
 java.lang.String toSpeedAbbr(java.util.Locale loc)
           
 java.lang.String toString()
           
 java.lang.String toString(java.util.Locale loc)
           
static GeoPoint.DistanceUnits valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GeoPoint.DistanceUnits[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

KILOMETERS

public static final GeoPoint.DistanceUnits KILOMETERS

METERS

public static final GeoPoint.DistanceUnits METERS

MILES

public static final GeoPoint.DistanceUnits MILES

FEET

public static final GeoPoint.DistanceUnits FEET

NAUTICAL_MILES

public static final GeoPoint.DistanceUnits NAUTICAL_MILES
Method Detail

values

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

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

valueOf

public static GeoPoint.DistanceUnits 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

getIntValue

public int getIntValue()
Specified by:
getIntValue in interface EnumTools.IntValue

toDistanceAbbr

public java.lang.String toDistanceAbbr()

toDistanceAbbr

public java.lang.String toDistanceAbbr(java.util.Locale loc)

toSpeedAbbr

public java.lang.String toSpeedAbbr()

toSpeedAbbr

public java.lang.String toSpeedAbbr(java.util.Locale loc)

toString

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

toString

public java.lang.String toString(java.util.Locale loc)
Specified by:
toString in interface EnumTools.StringLocale

convertFromKM

public double convertFromKM(double v)

convertToKM

public double convertToKM(double v)