Enum AuthenticationErrorType
-
- All Implemented Interfaces:
-
android.os.Parcelable,java.io.Serializable,kotlin.Comparable
public enum AuthenticationErrorType extends Enum<AuthenticationErrorType> implements Parcelable
This enum holds the type of the error occurred during the authentication process.
-
-
Field Summary
Fields Modifier and Type Field Description private final EnumEntries<AuthenticationErrorType>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description AuthenticationProcessErrorThe authentication did not complete because the user or the app caused an error.
ConnectivityErrorThe communication between the SDK and the remote server could not be established. We recommend retrying authentication if this occurs.
ThreeDS1ProtocolErrorThe SDK encountered an error related to the 3DS1 protocol.
ThreeDS2ProtocolErrorThe authentication did not complete because an error was reported by one of the components in the 3D Secure process.
InternalErrorThe SDK encountered an internal error.
-
Method Summary
Modifier and Type Method Description final AuthenticationErrorTypevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<AuthenticationErrorType>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<AuthenticationErrorType>getEntries()This enum holds the type of the error occurred during the authentication process. -
-
Method Detail
-
valueOf
final AuthenticationErrorType valueOf(String value)
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.)
-
values
final Array<AuthenticationErrorType> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<AuthenticationErrorType> getEntries()
This enum holds the type of the error occurred during the authentication process.
-
-
-
-