Package com.hyperwallet.clientsdk.model
Enum HyperwalletTransferMethod.VerificationStatus
- java.lang.Object
-
- java.lang.Enum<HyperwalletTransferMethod.VerificationStatus>
-
- com.hyperwallet.clientsdk.model.HyperwalletTransferMethod.VerificationStatus
-
- All Implemented Interfaces:
Serializable,Comparable<HyperwalletTransferMethod.VerificationStatus>
- Enclosing class:
- HyperwalletTransferMethod
public static enum HyperwalletTransferMethod.VerificationStatus extends Enum<HyperwalletTransferMethod.VerificationStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXPIREDFAILEDNOT_REQUIREDREADY_FOR_REVIEWREQUESTEDREQUIREDUNDER_REVIEWVERIFIED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HyperwalletTransferMethod.VerificationStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static HyperwalletTransferMethod.VerificationStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXPIRED
public static final HyperwalletTransferMethod.VerificationStatus EXPIRED
-
FAILED
public static final HyperwalletTransferMethod.VerificationStatus FAILED
-
UNDER_REVIEW
public static final HyperwalletTransferMethod.VerificationStatus UNDER_REVIEW
-
VERIFIED
public static final HyperwalletTransferMethod.VerificationStatus VERIFIED
-
REQUIRED
public static final HyperwalletTransferMethod.VerificationStatus REQUIRED
-
NOT_REQUIRED
public static final HyperwalletTransferMethod.VerificationStatus NOT_REQUIRED
-
READY_FOR_REVIEW
public static final HyperwalletTransferMethod.VerificationStatus READY_FOR_REVIEW
-
REQUESTED
public static final HyperwalletTransferMethod.VerificationStatus REQUESTED
-
-
Method Detail
-
values
public static HyperwalletTransferMethod.VerificationStatus[] 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 (HyperwalletTransferMethod.VerificationStatus c : HyperwalletTransferMethod.VerificationStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HyperwalletTransferMethod.VerificationStatus 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
-
-