public enum CardAuthenticationResponse extends Enum<CardAuthenticationResponse>
| Enum Constant and Description |
|---|
AUTHENTICATION_ERROR |
AUTHENTICATION_NOT_REQUIRED |
ENROLLMENT_ERROR |
FULLY_AUTHENTICATED |
NOT_ENROLLED |
| Modifier and Type | Method and Description |
|---|---|
static CardAuthenticationResponse |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static CardAuthenticationResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CardAuthenticationResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardAuthenticationResponse FULLY_AUTHENTICATED
public static final CardAuthenticationResponse AUTHENTICATION_NOT_REQUIRED
public static final CardAuthenticationResponse NOT_ENROLLED
public static final CardAuthenticationResponse ENROLLMENT_ERROR
public static final CardAuthenticationResponse AUTHENTICATION_ERROR
public static CardAuthenticationResponse[] values()
for (CardAuthenticationResponse c : CardAuthenticationResponse.values()) System.out.println(c);
public static CardAuthenticationResponse 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 getValue()
public String toString()
toString in class Enum<CardAuthenticationResponse>public static CardAuthenticationResponse fromValue(String text)
Copyright © 2024. All rights reserved.