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