Package jmri.jmrit.decoderdefn
Enum IdentifyDecoder.Manufacturer
- java.lang.Object
-
- java.lang.Enum<IdentifyDecoder.Manufacturer>
-
- jmri.jmrit.decoderdefn.IdentifyDecoder.Manufacturer
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IdentifyDecoder.Manufacturer>
- Enclosing class:
- IdentifyDecoder
static enum IdentifyDecoder.Manufacturer extends java.lang.Enum<IdentifyDecoder.Manufacturer>
Represents specific CV8 values. We don't do product ID for anything not defined here.
-
-
Field Summary
Fields Modifier and Type Field Description int
value
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IdentifyDecoder.Manufacturer
forValue(int value)
static IdentifyDecoder.Manufacturer
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IdentifyDecoder.Manufacturer[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIETZ
public static final IdentifyDecoder.Manufacturer DIETZ
-
DIY
public static final IdentifyDecoder.Manufacturer DIY
-
DOEHLER
public static final IdentifyDecoder.Manufacturer DOEHLER
-
ESU
public static final IdentifyDecoder.Manufacturer ESU
-
HARMAN
public static final IdentifyDecoder.Manufacturer HARMAN
-
HORNBY
public static final IdentifyDecoder.Manufacturer HORNBY
-
QSI
public static final IdentifyDecoder.Manufacturer QSI
-
SOUNDTRAXX
public static final IdentifyDecoder.Manufacturer SOUNDTRAXX
-
TCS
public static final IdentifyDecoder.Manufacturer TCS
-
TRAINOMATIC
public static final IdentifyDecoder.Manufacturer TRAINOMATIC
-
ZIMO
public static final IdentifyDecoder.Manufacturer ZIMO
-
-
Field Detail
-
value
public int value
-
-
Method Detail
-
values
public static IdentifyDecoder.Manufacturer[] 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 (IdentifyDecoder.Manufacturer c : IdentifyDecoder.Manufacturer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentifyDecoder.Manufacturer 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
-
forValue
public static IdentifyDecoder.Manufacturer forValue(int value)
-
-