Package jmri.implementation
Enum AddressedHighCvProgrammerFacade.ProgState
- java.lang.Object
- 
- java.lang.Enum<AddressedHighCvProgrammerFacade.ProgState>
- 
- jmri.implementation.AddressedHighCvProgrammerFacade.ProgState
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<AddressedHighCvProgrammerFacade.ProgState>
 - Enclosing class:
- AddressedHighCvProgrammerFacade
 
 static enum AddressedHighCvProgrammerFacade.ProgState extends java.lang.Enum<AddressedHighCvProgrammerFacade.ProgState> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description FINISHREADWrote 2nd index on a read operation, waiting for replyFINISHWRITEWrote 2nd index on a write operation, waiting for replyNOTPROGRAMMINGnothing happening, no reply expectedPROGRAMMINGA pass-through operation, waiting reply, when done the entire operation is doneWRITELOWREADWrote 1st index on a read operation, waiting for replyWRITELOWWRITEWrote 1st index on a write operation, waiting for reply
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AddressedHighCvProgrammerFacade.ProgStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AddressedHighCvProgrammerFacade.ProgState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
PROGRAMMINGpublic static final AddressedHighCvProgrammerFacade.ProgState PROGRAMMING A pass-through operation, waiting reply, when done the entire operation is done
 - 
WRITELOWREADpublic static final AddressedHighCvProgrammerFacade.ProgState WRITELOWREAD Wrote 1st index on a read operation, waiting for reply
 - 
WRITELOWWRITEpublic static final AddressedHighCvProgrammerFacade.ProgState WRITELOWWRITE Wrote 1st index on a write operation, waiting for reply
 - 
FINISHREADpublic static final AddressedHighCvProgrammerFacade.ProgState FINISHREAD Wrote 2nd index on a read operation, waiting for reply
 - 
FINISHWRITEpublic static final AddressedHighCvProgrammerFacade.ProgState FINISHWRITE Wrote 2nd index on a write operation, waiting for reply
 - 
NOTPROGRAMMINGpublic static final AddressedHighCvProgrammerFacade.ProgState NOTPROGRAMMING nothing happening, no reply expected
 
- 
 - 
Method Detail- 
valuespublic static AddressedHighCvProgrammerFacade.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 (AddressedHighCvProgrammerFacade.ProgState c : AddressedHighCvProgrammerFacade.ProgState.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AddressedHighCvProgrammerFacade.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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-