Enum 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.

    • 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 name
        NullPointerException - if the argument is null