Package jmri.jmrix.bachrus.speedmatcher
Enum SpeedMatcher.SpeedMatcherCV
- java.lang.Object
- 
- java.lang.Enum<SpeedMatcher.SpeedMatcherCV>
- 
- jmri.jmrix.bachrus.speedmatcher.SpeedMatcher.SpeedMatcherCV
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<SpeedMatcher.SpeedMatcherCV>
 - Enclosing class:
- SpeedMatcher
 
 protected static enum SpeedMatcher.SpeedMatcherCV extends java.lang.Enum<SpeedMatcher.SpeedMatcherCV> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ACCELDECELFORWARDTRIMREVERSETRIMVHIGHVMIDVSTART
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCV()Gets the string CV value for the SpeedMatcherCVjava.lang.StringgetCVDisplayName()Gets the string display name of the SpeedMatcherCVjava.lang.StringgetName()Gets the string name of the SpeedMatcherCVstatic SpeedMatcher.SpeedMatcherCVvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SpeedMatcher.SpeedMatcherCV[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
VSTARTpublic static final SpeedMatcher.SpeedMatcherCV VSTART 
 - 
VMIDpublic static final SpeedMatcher.SpeedMatcherCV VMID 
 - 
VHIGHpublic static final SpeedMatcher.SpeedMatcherCV VHIGH 
 - 
ACCELpublic static final SpeedMatcher.SpeedMatcherCV ACCEL 
 - 
DECELpublic static final SpeedMatcher.SpeedMatcherCV DECEL 
 - 
FORWARDTRIMpublic static final SpeedMatcher.SpeedMatcherCV FORWARDTRIM 
 - 
REVERSETRIMpublic static final SpeedMatcher.SpeedMatcherCV REVERSETRIM 
 
- 
 - 
Method Detail- 
valuespublic static SpeedMatcher.SpeedMatcherCV[] 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 (SpeedMatcher.SpeedMatcherCV c : SpeedMatcher.SpeedMatcherCV.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SpeedMatcher.SpeedMatcherCV 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
 
 - 
getCVpublic java.lang.String getCV() Gets the string CV value for the SpeedMatcherCV- Returns:
- string CV value
 
 - 
getNamepublic java.lang.String getName() Gets the string name of the SpeedMatcherCV- Returns:
- string name
 
 - 
getCVDisplayNamepublic java.lang.String getCVDisplayName() Gets the string display name of the SpeedMatcherCV- Returns:
- string display name
 
 
- 
 
-