org.virtualbox_7_0
Enum UefiVariableAttributes

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

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

Possible variable attributes. More than one flag may be set.

See Also:
Interface ID: {CDA505EC-B444-4AEF-B55C-B687717BDAC5}

Enum Constant Summary
AuthAppendWrite
          The variable can be appended only.
AuthTimeBasedWriteAccess
          Variable was written with a time based authentication.
AuthWriteAccess
          Writing to this variable requires an authenticated source.
BootServiceAccess
          Variable can be accessed from the boot services.
HwErrorRecord
          Variable contains a hardware error record.
None
          No attributes set.
NonVolatile
          Variable is stored in non volatile storage.
RuntimeAccess
          Variable can be accessed from the runtime.
 
Method Summary
static UefiVariableAttributes fromValue(long v)
           
static UefiVariableAttributes fromValue(java.lang.String v)
           
 int value()
           
static UefiVariableAttributes valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UefiVariableAttributes[] 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

None

public static final UefiVariableAttributes None
No attributes set.


NonVolatile

public static final UefiVariableAttributes NonVolatile
Variable is stored in non volatile storage.


BootServiceAccess

public static final UefiVariableAttributes BootServiceAccess
Variable can be accessed from the boot services.


RuntimeAccess

public static final UefiVariableAttributes RuntimeAccess
Variable can be accessed from the runtime.


HwErrorRecord

public static final UefiVariableAttributes HwErrorRecord
Variable contains a hardware error record.


AuthWriteAccess

public static final UefiVariableAttributes AuthWriteAccess
Writing to this variable requires an authenticated source.


AuthTimeBasedWriteAccess

public static final UefiVariableAttributes AuthTimeBasedWriteAccess
Variable was written with a time based authentication.


AuthAppendWrite

public static final UefiVariableAttributes AuthAppendWrite
The variable can be appended only.

Method Detail

values

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

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

valueOf

public static UefiVariableAttributes 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 UefiVariableAttributes fromValue(long v)

fromValue

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