Enum Class FormatT

java.lang.Object
java.lang.Enum<FormatT>
org.bremersee.garmin.weblink.v1.model.ext.FormatT
All Implemented Interfaces:
Serializable, Comparable<FormatT>, Constable

public enum FormatT extends Enum<FormatT>

Java class for Format_t.

The following schema fragment specifies the expected content contained within this class.


 <simpleType name="Format_t">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="LAT_DEFAULT"/>
     <enumeration value="LAT_ORIENTATION"/>
     <enumeration value="LAT_SIGN"/>
     <enumeration value="LAT_DEGREES"/>
     <enumeration value="LAT_DEGREES_FLOOR"/>
     <enumeration value="LAT_MINUTES"/>
     <enumeration value="LAT_MINUTES_FLOOR"/>
     <enumeration value="LAT_SECONDS"/>
     <enumeration value="LAT_SECONDS_ROUND"/>
     <enumeration value="LON_DEFAULT"/>
     <enumeration value="LON_ORIENTATION"/>
     <enumeration value="LON_SIGN"/>
     <enumeration value="LON_DEGREES"/>
     <enumeration value="LON_DEGREES_FLOOR"/>
     <enumeration value="LON_MINUTES"/>
     <enumeration value="LON_MINUTES_FLOOR"/>
     <enumeration value="LON_SECONDS"/>
     <enumeration value="LON_SECONDS_ROUND"/>
     <enumeration value="FEATURE_NAME"/>
     <enumeration value="ADDRESS_STREET"/>
     <enumeration value="ADDRESS_CITY"/>
     <enumeration value="ADDRESS_STATE"/>
     <enumeration value="ADDRESS_ZIP"/>
     <enumeration value="ADDRESS_PHONE"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • LAT_DEFAULT

      public static final FormatT LAT_DEFAULT
      Default format for latitude +-dd.ddd
    • LAT_ORIENTATION

      public static final FormatT LAT_ORIENTATION
      N or S
    • LAT_SIGN

      public static final FormatT LAT_SIGN
      + for North and - for South
    • LAT_DEGREES

      public static final FormatT LAT_DEGREES
      Latitude in dd.dddd
    • LAT_DEGREES_FLOOR

      public static final FormatT LAT_DEGREES_FLOOR
      Latitude as integer. floor(degrees)
    • LAT_MINUTES

      public static final FormatT LAT_MINUTES
      Latitude minutes in mm.mmmm
    • LAT_MINUTES_FLOOR

      public static final FormatT LAT_MINUTES_FLOOR
      Latitude minutes as integer floor(minutes)
    • LAT_SECONDS

      public static final FormatT LAT_SECONDS
      Latitude seconds as ss.ssss
    • LAT_SECONDS_ROUND

      public static final FormatT LAT_SECONDS_ROUND
      Rounded latitude second to nearest integer
    • LON_DEFAULT

      public static final FormatT LON_DEFAULT
      Default format for latitude +-dd.ddd
    • LON_ORIENTATION

      public static final FormatT LON_ORIENTATION
      N or S
    • LON_SIGN

      public static final FormatT LON_SIGN
      + for North and - for South
    • LON_DEGREES

      public static final FormatT LON_DEGREES
      Latitude in dd.dddd
    • LON_DEGREES_FLOOR

      public static final FormatT LON_DEGREES_FLOOR
      Latitude as integer. floor(degrees)
    • LON_MINUTES

      public static final FormatT LON_MINUTES
      Latitude minutes in mm.mmmm
    • LON_MINUTES_FLOOR

      public static final FormatT LON_MINUTES_FLOOR
      Latitude minutes as integer floor(minutes)
    • LON_SECONDS

      public static final FormatT LON_SECONDS
      Latitude seconds as ss.ssss
    • LON_SECONDS_ROUND

      public static final FormatT LON_SECONDS_ROUND
      Rounded latitude second to nearest integer
    • FEATURE_NAME

      public static final FormatT FEATURE_NAME
      Name of selected feature
    • ADDRESS_STREET

      public static final FormatT ADDRESS_STREET
      Street in selected address
    • ADDRESS_CITY

      public static final FormatT ADDRESS_CITY
      City in selected address
    • ADDRESS_STATE

      public static final FormatT ADDRESS_STATE
      State in selected address (two letters)
    • ADDRESS_ZIP

      public static final FormatT ADDRESS_ZIP
      Zip in selected address
    • ADDRESS_PHONE

      public static final FormatT ADDRESS_PHONE
      Phone number of selected address
  • Method Details

    • values

      public static FormatT[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FormatT valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static FormatT fromValue(String v)