public enum BiosSettingsState extends Enum<BiosSettingsState>
Enum Constant and Description |
---|
Applied
Indicates the current BIOS/UEFI settings were retrieved from the
server successfully and no profile changes are pending.
|
Pending
Indicates there are BIOS/UEFI settings defined in the server
profile that have been applied to the server hardware and will
take effect when the server hardware is next powered on and completes
its power-on self-test.
|
Unknown
Indicates the server failed to return the current settings,
therefore, the actual values might not be current.
|
Modifier and Type | Method and Description |
---|---|
static BiosSettingsState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BiosSettingsState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BiosSettingsState Applied
public static final BiosSettingsState Pending
public static final BiosSettingsState Unknown
public static BiosSettingsState[] values()
for (BiosSettingsState c : BiosSettingsState.values()) System.out.println(c);
public static BiosSettingsState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016. All rights reserved.