com.garmin.fit
Enum DisplayPosition
java.lang.Object
java.lang.Enum<DisplayPosition>
com.garmin.fit.DisplayPosition
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DisplayPosition>
public enum DisplayPosition
- extends java.lang.Enum<DisplayPosition>
Field Summary |
protected short |
value
|
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 |
DEGREE
public static final DisplayPosition DEGREE
DEGREE_MINUTE
public static final DisplayPosition DEGREE_MINUTE
DEGREE_MINUTE_SECOND
public static final DisplayPosition DEGREE_MINUTE_SECOND
AUSTRIAN_GRID
public static final DisplayPosition AUSTRIAN_GRID
BRITISH_GRID
public static final DisplayPosition BRITISH_GRID
DUTCH_GRID
public static final DisplayPosition DUTCH_GRID
HUNGARIAN_GRID
public static final DisplayPosition HUNGARIAN_GRID
FINNISH_GRID
public static final DisplayPosition FINNISH_GRID
GERMAN_GRID
public static final DisplayPosition GERMAN_GRID
ICELANDIC_GRID
public static final DisplayPosition ICELANDIC_GRID
INDONESIAN_EQUATORIAL
public static final DisplayPosition INDONESIAN_EQUATORIAL
INDONESIAN_IRIAN
public static final DisplayPosition INDONESIAN_IRIAN
INDONESIAN_SOUTHERN
public static final DisplayPosition INDONESIAN_SOUTHERN
INDIA_ZONE_0
public static final DisplayPosition INDIA_ZONE_0
INDIA_ZONE_IA
public static final DisplayPosition INDIA_ZONE_IA
INDIA_ZONE_IB
public static final DisplayPosition INDIA_ZONE_IB
INDIA_ZONE_IIA
public static final DisplayPosition INDIA_ZONE_IIA
INDIA_ZONE_IIB
public static final DisplayPosition INDIA_ZONE_IIB
INDIA_ZONE_IIIA
public static final DisplayPosition INDIA_ZONE_IIIA
INDIA_ZONE_IIIB
public static final DisplayPosition INDIA_ZONE_IIIB
INDIA_ZONE_IVA
public static final DisplayPosition INDIA_ZONE_IVA
INDIA_ZONE_IVB
public static final DisplayPosition INDIA_ZONE_IVB
IRISH_TRANSVERSE
public static final DisplayPosition IRISH_TRANSVERSE
IRISH_GRID
public static final DisplayPosition IRISH_GRID
LORAN
public static final DisplayPosition LORAN
MAIDENHEAD_GRID
public static final DisplayPosition MAIDENHEAD_GRID
MGRS_GRID
public static final DisplayPosition MGRS_GRID
NEW_ZEALAND_GRID
public static final DisplayPosition NEW_ZEALAND_GRID
NEW_ZEALAND_TRANSVERSE
public static final DisplayPosition NEW_ZEALAND_TRANSVERSE
QATAR_GRID
public static final DisplayPosition QATAR_GRID
MODIFIED_SWEDISH_GRID
public static final DisplayPosition MODIFIED_SWEDISH_GRID
SWEDISH_GRID
public static final DisplayPosition SWEDISH_GRID
SOUTH_AFRICAN_GRID
public static final DisplayPosition SOUTH_AFRICAN_GRID
SWISS_GRID
public static final DisplayPosition SWISS_GRID
TAIWAN_GRID
public static final DisplayPosition TAIWAN_GRID
UNITED_STATES_GRID
public static final DisplayPosition UNITED_STATES_GRID
UTM_UPS_GRID
public static final DisplayPosition UTM_UPS_GRID
WEST_MALAYAN
public static final DisplayPosition WEST_MALAYAN
BORNEO_RSO
public static final DisplayPosition BORNEO_RSO
ESTONIAN_GRID
public static final DisplayPosition ESTONIAN_GRID
LATVIAN_GRID
public static final DisplayPosition LATVIAN_GRID
SWEDISH_REF_99_GRID
public static final DisplayPosition SWEDISH_REF_99_GRID
INVALID
public static final DisplayPosition INVALID
value
protected short value
values
public static DisplayPosition[] 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 (DisplayPosition c : DisplayPosition.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DisplayPosition 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
getByValue
public static DisplayPosition getByValue(java.lang.Short value)
getStringFromValue
public static java.lang.String getStringFromValue(DisplayPosition value)
- Retrieves the String Representation of the Value
- Returns:
- The string representation of the value
getValue
public short getValue()