Enum SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState
- java.lang.Object
-
- java.lang.Enum<SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState>
-
- jmri.jmrix.bachrus.speedmatcher.speedStepScale.SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState>
- Enclosing class:
- SpeedStepScaleSpeedTableSpeedMatcher
protected static enum SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState extends java.lang.Enum<SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDLE
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState IDLE
-
WAIT_FOR_THROTTLE
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState WAIT_FOR_THROTTLE
-
INIT_THROTTLE
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState INIT_THROTTLE
-
INIT_ACCEL
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState INIT_ACCEL
-
INIT_DECEL
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState INIT_DECEL
-
INIT_SPEED_TABLE
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState INIT_SPEED_TABLE
-
INIT_FORWARD_TRIM
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState INIT_FORWARD_TRIM
-
INIT_REVERSE_TRIM
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState INIT_REVERSE_TRIM
-
POST_INIT
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState POST_INIT
-
FORWARD_WARM_UP
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState FORWARD_WARM_UP
-
READ_MAX_SPEED
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState READ_MAX_SPEED
-
FORWARD_SPEED_MATCH_STEP28
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState FORWARD_SPEED_MATCH_STEP28
-
SET_UPPER_SPEED_STEPS
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState SET_UPPER_SPEED_STEPS
-
FORWARD_SPEED_MATCH
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState FORWARD_SPEED_MATCH
-
POST_SPEED_MATCH
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState POST_SPEED_MATCH
-
REVERSE_WARM_UP
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState REVERSE_WARM_UP
-
REVERSE_SPEED_MATCH_TRIM
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState REVERSE_SPEED_MATCH_TRIM
-
COMPLETE
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState COMPLETE
-
USER_STOPPED
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState USER_STOPPED
-
CLEAN_UP
public static final SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState CLEAN_UP
-
-
Method Detail
-
values
public static SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState[] 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 (SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState c : SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpeedStepScaleSpeedTableSpeedMatcher.SpeedMatcherState 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 namejava.lang.NullPointerException
- if the argument is null
-
-