Package com.oracle.bmc.core.model
Enum InstanceConfigurationLaunchOptions.Firmware
- java.lang.Object
-
- java.lang.Enum<InstanceConfigurationLaunchOptions.Firmware>
-
- com.oracle.bmc.core.model.InstanceConfigurationLaunchOptions.Firmware
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<InstanceConfigurationLaunchOptions.Firmware>
- Enclosing class:
- InstanceConfigurationLaunchOptions
public static enum InstanceConfigurationLaunchOptions.Firmware extends Enum<InstanceConfigurationLaunchOptions.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 InstanceConfigurationLaunchOptions.Firmware
create(String key)
String
getValue()
static InstanceConfigurationLaunchOptions.Firmware
valueOf(String name)
Returns the enum constant of this type with the specified name.static InstanceConfigurationLaunchOptions.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 InstanceConfigurationLaunchOptions.Firmware Bios
-
Uefi64
public static final InstanceConfigurationLaunchOptions.Firmware Uefi64
-
UnknownEnumValue
public static final InstanceConfigurationLaunchOptions.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 InstanceConfigurationLaunchOptions.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 (InstanceConfigurationLaunchOptions.Firmware c : InstanceConfigurationLaunchOptions.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 InstanceConfigurationLaunchOptions.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 InstanceConfigurationLaunchOptions.Firmware create(String key)
-
-