public enum UefiVariableAttributes extends java.lang.Enum<UefiVariableAttributes>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final UefiVariableAttributes None
public static final UefiVariableAttributes NonVolatile
public static final UefiVariableAttributes BootServiceAccess
public static final UefiVariableAttributes RuntimeAccess
public static final UefiVariableAttributes HwErrorRecord
public static final UefiVariableAttributes AuthWriteAccess
public static final UefiVariableAttributes AuthTimeBasedWriteAccess
public static final UefiVariableAttributes AuthAppendWrite
public static UefiVariableAttributes[] values()
for (UefiVariableAttributes c : UefiVariableAttributes.values()) System.out.println(c);
public static UefiVariableAttributes valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static UefiVariableAttributes fromValue(long v)
public static UefiVariableAttributes fromValue(java.lang.String v)