Package jmri.implementation
Enum VerifyWriteProgrammerFacade.ProgState
- java.lang.Object
-
- java.lang.Enum<VerifyWriteProgrammerFacade.ProgState>
-
- jmri.implementation.VerifyWriteProgrammerFacade.ProgState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<VerifyWriteProgrammerFacade.ProgState>
- Enclosing class:
- VerifyWriteProgrammerFacade
static enum VerifyWriteProgrammerFacade.ProgState extends java.lang.Enum<VerifyWriteProgrammerFacade.ProgState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FINISHREAD
Waiting for response to verify read, will end nextFINISHWRITE
Waiting for response to write, issue verify read nextNOTPROGRAMMING
No current operationREADING
Waiting for response to read, will end next
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VerifyWriteProgrammerFacade.ProgState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static VerifyWriteProgrammerFacade.ProgState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READING
public static final VerifyWriteProgrammerFacade.ProgState READING
Waiting for response to read, will end next
-
FINISHWRITE
public static final VerifyWriteProgrammerFacade.ProgState FINISHWRITE
Waiting for response to write, issue verify read next
-
FINISHREAD
public static final VerifyWriteProgrammerFacade.ProgState FINISHREAD
Waiting for response to verify read, will end next
-
NOTPROGRAMMING
public static final VerifyWriteProgrammerFacade.ProgState NOTPROGRAMMING
No current operation
-
-
Method Detail
-
values
public static VerifyWriteProgrammerFacade.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 (VerifyWriteProgrammerFacade.ProgState c : VerifyWriteProgrammerFacade.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 VerifyWriteProgrammerFacade.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
-
-