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