org.virtualbox_5_0
Enum FirmwareType

java.lang.Object
  extended by java.lang.Enum<FirmwareType>
      extended by org.virtualbox_5_0.FirmwareType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FirmwareType>

public enum FirmwareType
extends java.lang.Enum<FirmwareType>

Firmware type. Interface ID: {B903F264-C230-483E-AC74-2B37CE60D371}


Enum Constant Summary
BIOS
          BIOS Firmware.
EFI
          EFI Firmware, bitness detected basing on OS type.
EFI32
          EFI firmware, 32-bit.
EFI64
          EFI firmware, 64-bit.
EFIDUAL
          EFI firmware, combined 32 and 64-bit.
 
Method Summary
static FirmwareType fromValue(long v)
           
static FirmwareType fromValue(java.lang.String v)
           
 int value()
           
static FirmwareType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FirmwareType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BIOS

public static final FirmwareType BIOS
BIOS Firmware.


EFI

public static final FirmwareType EFI
EFI Firmware, bitness detected basing on OS type.


EFI32

public static final FirmwareType EFI32
EFI firmware, 32-bit.


EFI64

public static final FirmwareType EFI64
EFI firmware, 64-bit.


EFIDUAL

public static final FirmwareType EFIDUAL
EFI firmware, combined 32 and 64-bit.

Method Detail

values

public static FirmwareType[] 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 (FirmwareType c : FirmwareType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FirmwareType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static FirmwareType fromValue(long v)

fromValue

public static FirmwareType fromValue(java.lang.String v)