Package jmri.implementation
Enum TwoIndexTcsProgrammerFacade.ProgState
- java.lang.Object
-
- java.lang.Enum<TwoIndexTcsProgrammerFacade.ProgState>
-
- jmri.implementation.TwoIndexTcsProgrammerFacade.ProgState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TwoIndexTcsProgrammerFacade.ProgState>
- Enclosing class:
- TwoIndexTcsProgrammerFacade
static enum TwoIndexTcsProgrammerFacade.ProgState extends java.lang.Enum<TwoIndexTcsProgrammerFacade.ProgState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOLSBFORREAD
DOMSBFORREAD
DOREADFIRST
DOSIFORREAD
DOSIFORWRITE
DOSTROBEFORREAD
DOWRITEFIRST
FINISHREAD
FINISHWRITE
NOTPROGRAMMING
PROGRAMMING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TwoIndexTcsProgrammerFacade.ProgState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TwoIndexTcsProgrammerFacade.ProgState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROGRAMMING
public static final TwoIndexTcsProgrammerFacade.ProgState PROGRAMMING
-
DOSIFORREAD
public static final TwoIndexTcsProgrammerFacade.ProgState DOSIFORREAD
-
DOSTROBEFORREAD
public static final TwoIndexTcsProgrammerFacade.ProgState DOSTROBEFORREAD
-
DOMSBFORREAD
public static final TwoIndexTcsProgrammerFacade.ProgState DOMSBFORREAD
-
DOLSBFORREAD
public static final TwoIndexTcsProgrammerFacade.ProgState DOLSBFORREAD
-
DOREADFIRST
public static final TwoIndexTcsProgrammerFacade.ProgState DOREADFIRST
-
FINISHREAD
public static final TwoIndexTcsProgrammerFacade.ProgState FINISHREAD
-
DOSIFORWRITE
public static final TwoIndexTcsProgrammerFacade.ProgState DOSIFORWRITE
-
DOWRITEFIRST
public static final TwoIndexTcsProgrammerFacade.ProgState DOWRITEFIRST
-
FINISHWRITE
public static final TwoIndexTcsProgrammerFacade.ProgState FINISHWRITE
-
NOTPROGRAMMING
public static final TwoIndexTcsProgrammerFacade.ProgState NOTPROGRAMMING
-
-
Method Detail
-
values
public static TwoIndexTcsProgrammerFacade.ProgState[] 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 (TwoIndexTcsProgrammerFacade.ProgState c : TwoIndexTcsProgrammerFacade.ProgState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TwoIndexTcsProgrammerFacade.ProgState 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
-
-