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