Enum BiosType

    • Enum Constant Detail

      • CLUSTER_DEFAULT

        public static final BiosType CLUSTER_DEFAULT
        Use the cluster-wide default. This value cannot be used for cluster.
      • I440FX_SEA_BIOS

        public static final BiosType I440FX_SEA_BIOS
        i440fx chipset with SeaBIOS. For non-x86 architectures this is the only non-default value allowed.
      • Q35_OVMF

        public static final BiosType Q35_OVMF
        q35 chipset with OVMF (UEFI) BIOS.
      • Q35_SEA_BIOS

        public static final BiosType Q35_SEA_BIOS
        q35 chipset with SeaBIOS.
      • Q35_SECURE_BOOT

        public static final BiosType Q35_SECURE_BOOT
        q35 chipset with OVMF (UEFI) BIOS with SecureBoot enabled.
    • Method Detail

      • values

        public static BiosType[] 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 (BiosType c : BiosType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BiosType 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
      • value

        public String value()