Package com.hyperwallet.clientsdk.model
Enum HyperwalletAccount.EType
- java.lang.Object
-
- java.lang.Enum<HyperwalletAccount.EType>
-
- com.hyperwallet.clientsdk.model.HyperwalletAccount.EType
-
- All Implemented Interfaces:
Serializable,Comparable<HyperwalletAccount.EType>
- Enclosing class:
- HyperwalletAccount
public static enum HyperwalletAccount.EType extends Enum<HyperwalletAccount.EType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLLECTIONSFUNDINGMERCHANTPOST_FUNDINGREVENUEVIRTUAL_INCENTIVES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HyperwalletAccount.ETypevalueOf(String name)Returns the enum constant of this type with the specified name.static HyperwalletAccount.EType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FUNDING
public static final HyperwalletAccount.EType FUNDING
-
MERCHANT
public static final HyperwalletAccount.EType MERCHANT
-
REVENUE
public static final HyperwalletAccount.EType REVENUE
-
COLLECTIONS
public static final HyperwalletAccount.EType COLLECTIONS
-
VIRTUAL_INCENTIVES
public static final HyperwalletAccount.EType VIRTUAL_INCENTIVES
-
POST_FUNDING
public static final HyperwalletAccount.EType POST_FUNDING
-
-
Method Detail
-
values
public static HyperwalletAccount.EType[] 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 (HyperwalletAccount.EType c : HyperwalletAccount.EType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HyperwalletAccount.EType 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
-
-