Enum Class NonBootOperation
- All Implemented Interfaces:
- Serializable,- Comparable<NonBootOperation>,- Constable
Non-boot operations that may be performed on a BMP.
- Author:
- Donal Fellows
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionRead the serial numbers from a board's BMP.Read a blacklist from a board's BMP's flash.Read the temperature data from a board's BMP.Write a blacklist to a board's BMP's flash.
- 
Method SummaryModifier and TypeMethodDescriptionstatic NonBootOperationReturns the enum constant of this class with the specified name.static NonBootOperation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
READ_BLRead a blacklist from a board's BMP's flash.
- 
WRITE_BLWrite a blacklist to a board's BMP's flash.
- 
GET_SERIALRead the serial numbers from a board's BMP.
- 
READ_TEMPRead the temperature data from a board's BMP.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-