Package org.bidib.wizard.mvc.loco.model
Enum RfBasisMode
- java.lang.Object
-
- java.lang.Enum<RfBasisMode>
-
- org.bidib.wizard.mvc.loco.model.RfBasisMode
-
- All Implemented Interfaces:
Serializable,Comparable<RfBasisMode>
public enum RfBasisMode extends Enum<RfBasisMode>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetBaseNumber()IntegergetFunctionIndex()StringgetKey()static RfBasisModevalueOf(String name)Returns the enum constant of this type with the specified name.static RfBasisMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE
public static final RfBasisMode SINGLE
-
MULTI_1
public static final RfBasisMode MULTI_1
-
MULTI_2
public static final RfBasisMode MULTI_2
-
MULTI_3
public static final RfBasisMode MULTI_3
-
MULTI_4
public static final RfBasisMode MULTI_4
-
MULTI_5
public static final RfBasisMode MULTI_5
-
MULTI_6
public static final RfBasisMode MULTI_6
-
MULTI_7
public static final RfBasisMode MULTI_7
-
MULTI_8
public static final RfBasisMode MULTI_8
-
-
Method Detail
-
values
public static RfBasisMode[] 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 (RfBasisMode c : RfBasisMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RfBasisMode valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getBaseNumber
public Integer getBaseNumber()
- Returns:
- the baseNumber
-
getFunctionIndex
public Integer getFunctionIndex()
-
getKey
public String getKey()
-
-