Enum Constant and Description |
---|
ASCENT_SPLIT |
CLIMB_ACTIVE |
CLIMB_REST |
DESCENT_SPLIT |
INTERVAL_ACTIVE |
INTERVAL_COOLDOWN |
INTERVAL_OTHER |
INTERVAL_RECOVERY |
INTERVAL_REST |
INTERVAL_WARMUP |
INVALID |
RUN_ACTIVE |
RUN_REST |
RWD_RUN |
RWD_STAND |
RWD_WALK |
SKI_LIFT_SPLIT |
SKI_RUN_SPLIT |
SURF_ACTIVE |
TRANSITION |
WINDSURF_ACTIVE |
WORKOUT_ROUND |
Modifier and Type | Field and Description |
---|---|
protected short |
value |
Modifier and Type | Method and Description |
---|---|
static SplitType |
getByValue(java.lang.Short value) |
static java.lang.String |
getStringFromValue(SplitType value)
Retrieves the String Representation of the Value
|
short |
getValue() |
static SplitType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SplitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SplitType ASCENT_SPLIT
public static final SplitType DESCENT_SPLIT
public static final SplitType INTERVAL_ACTIVE
public static final SplitType INTERVAL_REST
public static final SplitType INTERVAL_WARMUP
public static final SplitType INTERVAL_COOLDOWN
public static final SplitType INTERVAL_RECOVERY
public static final SplitType INTERVAL_OTHER
public static final SplitType CLIMB_ACTIVE
public static final SplitType CLIMB_REST
public static final SplitType SURF_ACTIVE
public static final SplitType RUN_ACTIVE
public static final SplitType RUN_REST
public static final SplitType WORKOUT_ROUND
public static final SplitType RWD_RUN
public static final SplitType RWD_WALK
public static final SplitType WINDSURF_ACTIVE
public static final SplitType RWD_STAND
public static final SplitType TRANSITION
public static final SplitType SKI_LIFT_SPLIT
public static final SplitType SKI_RUN_SPLIT
public static final SplitType INVALID
public static SplitType[] values()
for (SplitType c : SplitType.values()) System.out.println(c);
public static SplitType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static SplitType getByValue(java.lang.Short value)
public static java.lang.String getStringFromValue(SplitType value)
value
- The enum constantpublic short getValue()