Package com.oracle.bmc.core.model
Enum LaunchOptions.Firmware
- java.lang.Object
-
- java.lang.Enum<LaunchOptions.Firmware>
-
- com.oracle.bmc.core.model.LaunchOptions.Firmware
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<LaunchOptions.Firmware>
- Enclosing class:
- LaunchOptions
public static enum LaunchOptions.Firmware extends Enum<LaunchOptions.Firmware> implements BmcEnum
Firmware used to boot VM.Select the option that matches your operating system. * BIOS - Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders. * UEFI_64 - Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Bios
Uefi64
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LaunchOptions.Firmware
create(String key)
String
getValue()
static LaunchOptions.Firmware
valueOf(String name)
Returns the enum constant of this type with the specified name.static LaunchOptions.Firmware[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Bios
public static final LaunchOptions.Firmware Bios
-
Uefi64
public static final LaunchOptions.Firmware Uefi64
-
UnknownEnumValue
public static final LaunchOptions.Firmware UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static LaunchOptions.Firmware[] 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 (LaunchOptions.Firmware c : LaunchOptions.Firmware.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LaunchOptions.Firmware valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static LaunchOptions.Firmware create(String key)
-
-