Package com.hyperwallet.clientsdk.model
Enum HyperwalletTransferMethodConfiguration.Field.Category
- java.lang.Object
-
- java.lang.Enum<HyperwalletTransferMethodConfiguration.Field.Category>
-
- com.hyperwallet.clientsdk.model.HyperwalletTransferMethodConfiguration.Field.Category
-
- All Implemented Interfaces:
Serializable,Comparable<HyperwalletTransferMethodConfiguration.Field.Category>
- Enclosing class:
- HyperwalletTransferMethodConfiguration.Field
public static enum HyperwalletTransferMethodConfiguration.Field.Category extends Enum<HyperwalletTransferMethodConfiguration.Field.Category>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNTADDRESSINTERMEDIARY_ACCOUNTPROFILE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HyperwalletTransferMethodConfiguration.Field.CategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static HyperwalletTransferMethodConfiguration.Field.Category[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT
public static final HyperwalletTransferMethodConfiguration.Field.Category ACCOUNT
-
INTERMEDIARY_ACCOUNT
public static final HyperwalletTransferMethodConfiguration.Field.Category INTERMEDIARY_ACCOUNT
-
PROFILE
public static final HyperwalletTransferMethodConfiguration.Field.Category PROFILE
-
ADDRESS
public static final HyperwalletTransferMethodConfiguration.Field.Category ADDRESS
-
-
Method Detail
-
values
public static HyperwalletTransferMethodConfiguration.Field.Category[] 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 (HyperwalletTransferMethodConfiguration.Field.Category c : HyperwalletTransferMethodConfiguration.Field.Category.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HyperwalletTransferMethodConfiguration.Field.Category 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
-
-