com.garmin.fit
Enum ExdQualifiers

java.lang.Object
  extended by java.lang.Enum<ExdQualifiers>
      extended by com.garmin.fit.ExdQualifiers
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ExdQualifiers>

public enum ExdQualifiers
extends java.lang.Enum<ExdQualifiers>


Enum Constant Summary
AVERAGE
           
AVERAGE_LAP
           
COMPARED_TO_VIRTUAL_PARTNER
           
ELAPSED
           
ESTIMATED_TOTAL
           
FIRST
           
INSTANTANEOUS
           
INVALID
           
LAP
           
LAP_PERCENT_MAXIMUM
           
LAST_LAP
           
LAST_SPORT
           
MAXIMUM
           
MAXIMUM_24H
           
MAXIMUM_AVERAGE
           
MAXIMUM_LAP
           
MINIMUM
           
MINIMUM_24H
           
MOVING
           
NEXT_COURSE_POINT
           
NO_QUALIFIER
           
PERCENT_MAXIMUM
           
PERCENT_MAXIMUM_AVERAGE
           
SECOND
           
SHIFTER
           
STOPPED
           
SUNRISE
           
SUNSET
           
TEN_SECOND_AVERAGE
           
THIRD
           
THIRTY_SECOND_AVERAGE
           
THREE_SECOND_AVERAGE
           
TO_DESTINATION
           
TO_GO
           
TO_NEXT
           
TOTAL
           
ZONE_1
           
ZONE_2
           
ZONE_3
           
ZONE_4
           
ZONE_5
           
ZONE_6
           
ZONE_7
           
ZONE_8
           
ZONE_9
           
 
Field Summary
protected  short value
           
 
Method Summary
static ExdQualifiers getByValue(java.lang.Short value)
           
static java.lang.String getStringFromValue(ExdQualifiers value)
          Retrieves the String Representation of the Value
 short getValue()
           
static ExdQualifiers valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExdQualifiers[] 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

NO_QUALIFIER

public static final ExdQualifiers NO_QUALIFIER

INSTANTANEOUS

public static final ExdQualifiers INSTANTANEOUS

AVERAGE

public static final ExdQualifiers AVERAGE

LAP

public static final ExdQualifiers LAP

MAXIMUM

public static final ExdQualifiers MAXIMUM

MAXIMUM_AVERAGE

public static final ExdQualifiers MAXIMUM_AVERAGE

MAXIMUM_LAP

public static final ExdQualifiers MAXIMUM_LAP

LAST_LAP

public static final ExdQualifiers LAST_LAP

AVERAGE_LAP

public static final ExdQualifiers AVERAGE_LAP

TO_DESTINATION

public static final ExdQualifiers TO_DESTINATION

TO_GO

public static final ExdQualifiers TO_GO

TO_NEXT

public static final ExdQualifiers TO_NEXT

NEXT_COURSE_POINT

public static final ExdQualifiers NEXT_COURSE_POINT

TOTAL

public static final ExdQualifiers TOTAL

THREE_SECOND_AVERAGE

public static final ExdQualifiers THREE_SECOND_AVERAGE

TEN_SECOND_AVERAGE

public static final ExdQualifiers TEN_SECOND_AVERAGE

THIRTY_SECOND_AVERAGE

public static final ExdQualifiers THIRTY_SECOND_AVERAGE

PERCENT_MAXIMUM

public static final ExdQualifiers PERCENT_MAXIMUM

PERCENT_MAXIMUM_AVERAGE

public static final ExdQualifiers PERCENT_MAXIMUM_AVERAGE

LAP_PERCENT_MAXIMUM

public static final ExdQualifiers LAP_PERCENT_MAXIMUM

ELAPSED

public static final ExdQualifiers ELAPSED

SUNRISE

public static final ExdQualifiers SUNRISE

SUNSET

public static final ExdQualifiers SUNSET

COMPARED_TO_VIRTUAL_PARTNER

public static final ExdQualifiers COMPARED_TO_VIRTUAL_PARTNER

MAXIMUM_24H

public static final ExdQualifiers MAXIMUM_24H

MINIMUM_24H

public static final ExdQualifiers MINIMUM_24H

MINIMUM

public static final ExdQualifiers MINIMUM

FIRST

public static final ExdQualifiers FIRST

SECOND

public static final ExdQualifiers SECOND

THIRD

public static final ExdQualifiers THIRD

SHIFTER

public static final ExdQualifiers SHIFTER

LAST_SPORT

public static final ExdQualifiers LAST_SPORT

MOVING

public static final ExdQualifiers MOVING

STOPPED

public static final ExdQualifiers STOPPED

ESTIMATED_TOTAL

public static final ExdQualifiers ESTIMATED_TOTAL

ZONE_9

public static final ExdQualifiers ZONE_9

ZONE_8

public static final ExdQualifiers ZONE_8

ZONE_7

public static final ExdQualifiers ZONE_7

ZONE_6

public static final ExdQualifiers ZONE_6

ZONE_5

public static final ExdQualifiers ZONE_5

ZONE_4

public static final ExdQualifiers ZONE_4

ZONE_3

public static final ExdQualifiers ZONE_3

ZONE_2

public static final ExdQualifiers ZONE_2

ZONE_1

public static final ExdQualifiers ZONE_1

INVALID

public static final ExdQualifiers INVALID
Field Detail

value

protected short value
Method Detail

values

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

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

valueOf

public static ExdQualifiers 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 ExdQualifiers getByValue(java.lang.Short value)

getStringFromValue

public static java.lang.String getStringFromValue(ExdQualifiers value)
Retrieves the String Representation of the Value

Returns:
The string representation of the value

getValue

public short getValue()