public enum TransferFeeSubject extends java.lang.Enum<TransferFeeSubject>
| Enum Constant and Description |
|---|
DESTINATION
The one that receives / pay the fee is the user receiving a payment
|
DESTINATION_BROKER
The one that receives / pays the fee is the broker of the destination user.
|
FIXED_MEMBER
The one that receives / pay the fee is a fixed user
|
SOURCE
The one that receives / pay the fee is the user performing a payment
|
SOURCE_BROKER
The one that receives / pays the fee is the broker of the source user.
|
SYSTEM
The one that receives / pay the fee is a system account
|
| Modifier and Type | Method and Description |
|---|---|
static TransferFeeSubject |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransferFeeSubject[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferFeeSubject SYSTEM
public static final TransferFeeSubject SOURCE
public static final TransferFeeSubject DESTINATION
public static final TransferFeeSubject FIXED_MEMBER
public static final TransferFeeSubject SOURCE_BROKER
public static final TransferFeeSubject DESTINATION_BROKER
public static TransferFeeSubject[] values()
for (TransferFeeSubject c : TransferFeeSubject.values()) System.out.println(c);
public static TransferFeeSubject valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null