public static enum TPMA_MEMORY._N extends Enum<TPMA_MEMORY._N>
| Enum Constant and Description |
|---|
objectCopiedToRam
SET (1): indicates that the TPM copies persistent objects to a transient-object slot in RAM when the persistent object is referenced in a command.
|
sharedNV
SET (1): indicates that the NV memory used for persistent objects is shared with the NV memory used for NV Index values CLEAR (0): indicates that the persistent objects and NV Index values are allocated from separate sections of NV
|
sharedRAM
SET (1): indicates that the RAM memory used for authorization session contexts is shared with the memory used for transient objects CLEAR (0): indicates that the memory used for authorization sessions is not shared with memory used for transient objects
|
| Modifier and Type | Method and Description |
|---|---|
static TPMA_MEMORY._N |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TPMA_MEMORY._N[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TPMA_MEMORY._N sharedRAM
public static final TPMA_MEMORY._N sharedNV
public static final TPMA_MEMORY._N objectCopiedToRam
public static TPMA_MEMORY._N[] values()
for (TPMA_MEMORY._N c : TPMA_MEMORY._N.values()) System.out.println(c);
public static TPMA_MEMORY._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.