Package com.hyperwallet.clientsdk.model
Enum HyperwalletVerificationDocumentReason.RejectReason
- java.lang.Object
-
- java.lang.Enum<HyperwalletVerificationDocumentReason.RejectReason>
-
- com.hyperwallet.clientsdk.model.HyperwalletVerificationDocumentReason.RejectReason
-
- All Implemented Interfaces:
Serializable,Comparable<HyperwalletVerificationDocumentReason.RejectReason>
- Enclosing class:
- HyperwalletVerificationDocumentReason
public static enum HyperwalletVerificationDocumentReason.RejectReason extends Enum<HyperwalletVerificationDocumentReason.RejectReason>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOCUMENT_CORRECTION_REQUIREDDOCUMENT_EXPIREDDOCUMENT_NOT_COMPLETEDOCUMENT_NOT_DECISIVEDOCUMENT_NOT_READABLEDOCUMENT_NOT_RELATED_TO_PROFILEDOCUMENT_NOT_VALID_WITH_NOTESDOCUMENT_TYPE_NOT_VALID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HyperwalletVerificationDocumentReason.RejectReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static HyperwalletVerificationDocumentReason.RejectReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENT_EXPIRED
public static final HyperwalletVerificationDocumentReason.RejectReason DOCUMENT_EXPIRED
-
DOCUMENT_NOT_RELATED_TO_PROFILE
public static final HyperwalletVerificationDocumentReason.RejectReason DOCUMENT_NOT_RELATED_TO_PROFILE
-
DOCUMENT_NOT_READABLE
public static final HyperwalletVerificationDocumentReason.RejectReason DOCUMENT_NOT_READABLE
-
DOCUMENT_NOT_DECISIVE
public static final HyperwalletVerificationDocumentReason.RejectReason DOCUMENT_NOT_DECISIVE
-
DOCUMENT_NOT_COMPLETE
public static final HyperwalletVerificationDocumentReason.RejectReason DOCUMENT_NOT_COMPLETE
-
DOCUMENT_CORRECTION_REQUIRED
public static final HyperwalletVerificationDocumentReason.RejectReason DOCUMENT_CORRECTION_REQUIRED
-
DOCUMENT_NOT_VALID_WITH_NOTES
public static final HyperwalletVerificationDocumentReason.RejectReason DOCUMENT_NOT_VALID_WITH_NOTES
-
DOCUMENT_TYPE_NOT_VALID
public static final HyperwalletVerificationDocumentReason.RejectReason DOCUMENT_TYPE_NOT_VALID
-
-
Method Detail
-
values
public static HyperwalletVerificationDocumentReason.RejectReason[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HyperwalletVerificationDocumentReason.RejectReason c : HyperwalletVerificationDocumentReason.RejectReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HyperwalletVerificationDocumentReason.RejectReason valueOf(String name)
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-