public enum MidAuthenticationError extends Enum<MidAuthenticationError>
| Enum Constant and Description |
|---|
CERTIFICATE_EXPIRED |
INVALID_RESULT |
SIGNATURE_VERIFICATION_FAILURE |
| Modifier and Type | Method and Description |
|---|---|
String |
getMessage() |
static MidAuthenticationError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MidAuthenticationError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MidAuthenticationError INVALID_RESULT
public static final MidAuthenticationError SIGNATURE_VERIFICATION_FAILURE
public static final MidAuthenticationError CERTIFICATE_EXPIRED
public static MidAuthenticationError[] values()
for (MidAuthenticationError c : MidAuthenticationError.values()) System.out.println(c);
public static MidAuthenticationError 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 getMessage()
Copyright © 2019. All rights reserved.