public enum PowerAuthSignatureTypes extends Enum<PowerAuthSignatureTypes>
| Enum Constant and Description |
|---|
BIOMETRY
1FA signature using biometry factor key, value = "biometry"
|
KNOWLEDGE
1FA signature using knowledge factor key, value = "knowledge"
|
POSSESSION
1FA signature using possession factor key, value = "possession"
|
POSSESSION_BIOMETRY
2FA signature using possession and biometry factor key, value = "possession_biometry"
|
POSSESSION_KNOWLEDGE
2FA signature using possession and knowledge factor key, value = "possession_knowledge"
|
POSSESSION_KNOWLEDGE_BIOMETRY
3FA signature using possession, knowledge and biometry factor key, value = "possession_knowledge_biometry"
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equalsName(String otherName)
Check if the enum value has the same name as a given string.
|
static PowerAuthSignatureTypes |
getEnumFromString(String value)
Get enum value from provided string.
|
String |
toString() |
static PowerAuthSignatureTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PowerAuthSignatureTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PowerAuthSignatureTypes POSSESSION
public static final PowerAuthSignatureTypes KNOWLEDGE
public static final PowerAuthSignatureTypes BIOMETRY
public static final PowerAuthSignatureTypes POSSESSION_KNOWLEDGE
public static final PowerAuthSignatureTypes POSSESSION_BIOMETRY
public static final PowerAuthSignatureTypes POSSESSION_KNOWLEDGE_BIOMETRY
public static PowerAuthSignatureTypes[] values()
for (PowerAuthSignatureTypes c : PowerAuthSignatureTypes.values()) System.out.println(c);
public static PowerAuthSignatureTypes 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 nullpublic static PowerAuthSignatureTypes getEnumFromString(String value)
value - String to get the enum value for.public boolean equalsName(String otherName)
otherName - Name to be checked.public String toString()
toString in class Enum<PowerAuthSignatureTypes>Copyright © 2016 Lime - HighTech Solutions Inc.. All rights reserved.