public static enum TPMA_PERMANENT._N extends Enum<TPMA_PERMANENT._N>
| Enum Constant and Description |
|---|
disableClear
SET (1): TPM2_Clear() is disabled.
|
endorsementAuthSet
SET (1): TPM2_HierarchyChangeAuth() with endorsementAuth has been executed since the last TPM2_Clear().
|
inLockout
SET (1): The TPM is in lockout, when failedTries is equal to maxTries.
|
lockoutAuthSet
SET (1): TPM2_HierarchyChangeAuth() with lockoutAuth has been executed since the last TPM2_Clear().
|
ownerAuthSet
SET (1): TPM2_HierarchyChangeAuth() with ownerAuth has been executed since the last TPM2_Clear().
|
tpmGeneratedEPS
SET (1): The EPS was created by the TPM.
|
| Modifier and Type | Method and Description |
|---|---|
static TPMA_PERMANENT._N |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TPMA_PERMANENT._N[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TPMA_PERMANENT._N ownerAuthSet
public static final TPMA_PERMANENT._N endorsementAuthSet
public static final TPMA_PERMANENT._N lockoutAuthSet
public static final TPMA_PERMANENT._N disableClear
public static final TPMA_PERMANENT._N inLockout
public static final TPMA_PERMANENT._N tpmGeneratedEPS
public static TPMA_PERMANENT._N[] values()
for (TPMA_PERMANENT._N c : TPMA_PERMANENT._N.values()) System.out.println(c);
public static TPMA_PERMANENT._N valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.