Package io.jans.fido2.ctap
Enum AttestationFormat
- java.lang.Object
-
- java.lang.Enum<AttestationFormat>
-
- io.jans.fido2.ctap.AttestationFormat
-
- All Implemented Interfaces:
Serializable
,Comparable<AttestationFormat>
public enum AttestationFormat extends Enum<AttestationFormat>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description android_key
android_safetynet
apple
fido_u2f
fido_u2f_super_gluu
none
packed
tpm
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFmt()
static AttestationFormat
valueOf(String name)
Returns the enum constant of this type with the specified name.static AttestationFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
fido_u2f
public static final AttestationFormat fido_u2f
-
packed
public static final AttestationFormat packed
-
tpm
public static final AttestationFormat tpm
-
android_key
public static final AttestationFormat android_key
-
android_safetynet
public static final AttestationFormat android_safetynet
-
none
public static final AttestationFormat none
-
apple
public static final AttestationFormat apple
-
fido_u2f_super_gluu
public static final AttestationFormat fido_u2f_super_gluu
-
-
Method Detail
-
values
public static AttestationFormat[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AttestationFormat c : AttestationFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttestationFormat valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getFmt
public String getFmt()
-
-