public static enum TPM_NT._N extends Enum<TPM_NT._N>
| Enum Constant and Description |
|---|
BITS
Bit Field contains an 8-octet value to be used as a bit field and can only be modified with TPM2_NV_SetBits().
|
COUNTER
Counter contains an 8-octet value that is to be used as a counter and can only be modified with TPM2_NV_Increment()
|
EXTEND
Extend contains a digest-sized value used like a PCR.
|
ORDINARY
Ordinary contains data that is opaque to the TPM that can only be modified using TPM2_NV_Write().
|
PIN_FAIL
PIN Fail - contains pinCount that increments on a PIN authorization failure and a pinLimit
|
PIN_PASS
PIN Pass - contains pinCount that increments on a PIN authorization success and a pinLimit
|
| Modifier and Type | Method and Description |
|---|---|
static TPM_NT._N |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TPM_NT._N[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TPM_NT._N ORDINARY
public static final TPM_NT._N COUNTER
public static final TPM_NT._N BITS
public static final TPM_NT._N EXTEND
public static final TPM_NT._N PIN_FAIL
public static final TPM_NT._N PIN_PASS
public static TPM_NT._N[] values()
for (TPM_NT._N c : TPM_NT._N.values()) System.out.println(c);
public static TPM_NT._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.