public enum AttestationMechanismType extends Enum<AttestationMechanismType>
| Enum Constant and Description |
|---|
NONE |
SYMMETRIC_KEY |
TPM |
X509 |
| Modifier and Type | Method and Description |
|---|---|
static AttestationMechanismType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttestationMechanismType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="none") public static final AttestationMechanismType NONE
@SerializedName(value="tpm") public static final AttestationMechanismType TPM
@SerializedName(value="x509") public static final AttestationMechanismType X509
@SerializedName(value="symmetricKey") public static final AttestationMechanismType SYMMETRIC_KEY
public static AttestationMechanismType[] values()
for (AttestationMechanismType c : AttestationMechanismType.values()) System.out.println(c);
public static AttestationMechanismType 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 © 2021. All rights reserved.