Package jmri.implementation
Enum MultiIndexProgrammerFacade.ProgState
java.lang.Object
java.lang.Enum<MultiIndexProgrammerFacade.ProgState>
jmri.implementation.MultiIndexProgrammerFacade.ProgState
- All Implemented Interfaces:
Serializable
,Comparable<MultiIndexProgrammerFacade.ProgState>
,java.lang.constant.Constable
- Enclosing class:
- MultiIndexProgrammerFacade
static enum MultiIndexProgrammerFacade.ProgState extends Enum<MultiIndexProgrammerFacade.ProgState>
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description FINISHCONFIRM
Waiting for response to first or second index write before a final confirm operationFINISHREAD
Waiting for response to first or second index write before a final read operationFINISHWRITE
Waiting for response to first or second index write before a final write operationNOTPROGRAMMING
No current operationPROGRAMMING
Waiting for response to (final) read or write operation, final reply next -
Method Summary
Modifier and Type Method Description static MultiIndexProgrammerFacade.ProgState
valueOf(String name)
Returns the enum constant of this type with the specified name.static MultiIndexProgrammerFacade.ProgState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PROGRAMMING
Waiting for response to (final) read or write operation, final reply next -
FINISHREAD
Waiting for response to first or second index write before a final read operation -
FINISHWRITE
Waiting for response to first or second index write before a final write operation -
FINISHCONFIRM
Waiting for response to first or second index write before a final confirm operation -
NOTPROGRAMMING
No current operation
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-