public enum SignatureType extends Enum<SignatureType>
Java class for SignatureType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SignatureType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="POSSESSION"/>
<enumeration value="KNOWLEDGE"/>
<enumeration value="BIOMETRY"/>
<enumeration value="POSSESSION_KNOWLEDGE"/>
<enumeration value="POSSESSION_BIOMETRY"/>
<enumeration value="POSSESSION_KNOWLEDGE_BIOMETRY"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BIOMETRY |
KNOWLEDGE |
POSSESSION |
POSSESSION_BIOMETRY |
POSSESSION_KNOWLEDGE |
POSSESSION_KNOWLEDGE_BIOMETRY |
| Modifier and Type | Method and Description |
|---|---|
static SignatureType |
fromValue(String v) |
String |
value() |
static SignatureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignatureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignatureType POSSESSION
public static final SignatureType KNOWLEDGE
public static final SignatureType BIOMETRY
public static final SignatureType POSSESSION_KNOWLEDGE
public static final SignatureType POSSESSION_BIOMETRY
public static final SignatureType POSSESSION_KNOWLEDGE_BIOMETRY
public static SignatureType[] values()
for (SignatureType c : SignatureType.values()) System.out.println(c);
public static SignatureType 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 String value()
public static SignatureType fromValue(String v)
Copyright © 2017–2020 Wultra s.r.o.. All rights reserved.