Enum BasicESUTableSpeedMatcher.SpeedMatcherState
- java.lang.Object
-
- java.lang.Enum<BasicESUTableSpeedMatcher.SpeedMatcherState>
-
- jmri.jmrix.bachrus.speedmatcher.basic.BasicESUTableSpeedMatcher.SpeedMatcherState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BasicESUTableSpeedMatcher.SpeedMatcherState>
- Enclosing class:
- BasicESUTableSpeedMatcher
protected static enum BasicESUTableSpeedMatcher.SpeedMatcherState extends java.lang.Enum<BasicESUTableSpeedMatcher.SpeedMatcherState>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BasicESUTableSpeedMatcher.SpeedMatcherState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BasicESUTableSpeedMatcher.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 BasicESUTableSpeedMatcher.SpeedMatcherState IDLE
-
WAIT_FOR_THROTTLE
public static final BasicESUTableSpeedMatcher.SpeedMatcherState WAIT_FOR_THROTTLE
-
INIT_THROTTLE
public static final BasicESUTableSpeedMatcher.SpeedMatcherState INIT_THROTTLE
-
INIT_ACCEL
public static final BasicESUTableSpeedMatcher.SpeedMatcherState INIT_ACCEL
-
INIT_DECEL
public static final BasicESUTableSpeedMatcher.SpeedMatcherState INIT_DECEL
-
INIT_VSTART
public static final BasicESUTableSpeedMatcher.SpeedMatcherState INIT_VSTART
-
INIT_VHIGH
public static final BasicESUTableSpeedMatcher.SpeedMatcherState INIT_VHIGH
-
INIT_SPEED_TABLE
public static final BasicESUTableSpeedMatcher.SpeedMatcherState INIT_SPEED_TABLE
-
INIT_FORWARD_TRIM
public static final BasicESUTableSpeedMatcher.SpeedMatcherState INIT_FORWARD_TRIM
-
INIT_REVERSE_TRIM
public static final BasicESUTableSpeedMatcher.SpeedMatcherState INIT_REVERSE_TRIM
-
POST_INIT
public static final BasicESUTableSpeedMatcher.SpeedMatcherState POST_INIT
-
FORWARD_WARM_UP
public static final BasicESUTableSpeedMatcher.SpeedMatcherState FORWARD_WARM_UP
-
FORWARD_SPEED_MATCH_VHIGH
public static final BasicESUTableSpeedMatcher.SpeedMatcherState FORWARD_SPEED_MATCH_VHIGH
-
FORWARD_SPEED_MATCH_VSTART
public static final BasicESUTableSpeedMatcher.SpeedMatcherState FORWARD_SPEED_MATCH_VSTART
-
FORWARD_SPEED_MATCH_STEP19
public static final BasicESUTableSpeedMatcher.SpeedMatcherState FORWARD_SPEED_MATCH_STEP19
-
RE_INIT_SPEED_TABLE_MIDDLE_THIRD
public static final BasicESUTableSpeedMatcher.SpeedMatcherState RE_INIT_SPEED_TABLE_MIDDLE_THIRD
-
FORWARD_SPEED_MATCH_STEP10
public static final BasicESUTableSpeedMatcher.SpeedMatcherState FORWARD_SPEED_MATCH_STEP10
-
INTERPOLATE_SPEED_TABLE
public static final BasicESUTableSpeedMatcher.SpeedMatcherState INTERPOLATE_SPEED_TABLE
-
POST_INTERPOLATE
public static final BasicESUTableSpeedMatcher.SpeedMatcherState POST_INTERPOLATE
-
REVERSE_WARM_UP
public static final BasicESUTableSpeedMatcher.SpeedMatcherState REVERSE_WARM_UP
-
REVERSE_SPEED_MATCH_TRIM
public static final BasicESUTableSpeedMatcher.SpeedMatcherState REVERSE_SPEED_MATCH_TRIM
-
COMPLETE
public static final BasicESUTableSpeedMatcher.SpeedMatcherState COMPLETE
-
USER_STOPPED
public static final BasicESUTableSpeedMatcher.SpeedMatcherState USER_STOPPED
-
CLEAN_UP
public static final BasicESUTableSpeedMatcher.SpeedMatcherState CLEAN_UP
-
-
Method Detail
-
values
public static BasicESUTableSpeedMatcher.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 (BasicESUTableSpeedMatcher.SpeedMatcherState c : BasicESUTableSpeedMatcher.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 BasicESUTableSpeedMatcher.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
-
-