Package model
Enum SubTypeTransfer
- java.lang.Object
-
- java.lang.Enum<SubTypeTransfer>
-
- model.SubTypeTransfer
-
- All Implemented Interfaces:
Serializable,Comparable<SubTypeTransfer>
public enum SubTypeTransfer extends Enum<SubTypeTransfer>
Gets or Sets SubTypeTransfer
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSubTypeTransfer.Adapter
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SubTypeTransferfromValue(String value)StringgetRawValue()StringgetValue()voidsetRawValue(String s)StringtoString()static SubTypeTransfervalueOf(String name)Returns the enum constant of this type with the specified name.static SubTypeTransfer[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
API
public static final SubTypeTransfer API
-
APPLICATION_FEE
public static final SubTypeTransfer APPLICATION_FEE
-
DISPUTE
public static final SubTypeTransfer DISPUTE
-
MERCHANT_CREDIT
public static final SubTypeTransfer MERCHANT_CREDIT
-
MERCHANT_CREDIT_ADJUSTMENT
public static final SubTypeTransfer MERCHANT_CREDIT_ADJUSTMENT
-
MERCHANT_DEBIT
public static final SubTypeTransfer MERCHANT_DEBIT
-
MERCHANT_DEBIT_ADJUSTMENT
public static final SubTypeTransfer MERCHANT_DEBIT_ADJUSTMENT
-
PLATFORM_CREDIT
public static final SubTypeTransfer PLATFORM_CREDIT
-
PLATFORM_CREDIT_ADJUSTMENT
public static final SubTypeTransfer PLATFORM_CREDIT_ADJUSTMENT
-
PLATFORM_DEBIT
public static final SubTypeTransfer PLATFORM_DEBIT
-
PLATFORM_DEBIT_ADJUSTMENT
public static final SubTypeTransfer PLATFORM_DEBIT_ADJUSTMENT
-
PLATFORM_FEE
public static final SubTypeTransfer PLATFORM_FEE
-
SETTLEMENT_MERCHANT
public static final SubTypeTransfer SETTLEMENT_MERCHANT
-
SETTLEMENT_NOOP
public static final SubTypeTransfer SETTLEMENT_NOOP
-
SETTLEMENT_PARTNER
public static final SubTypeTransfer SETTLEMENT_PARTNER
-
SETTLEMENT_PLATFORM
public static final SubTypeTransfer SETTLEMENT_PLATFORM
-
SPLIT_PAYOUT
public static final SubTypeTransfer SPLIT_PAYOUT
-
SPLIT_PAYOUT_ADJUSTMENT
public static final SubTypeTransfer SPLIT_PAYOUT_ADJUSTMENT
-
UNKNOWN_DEFAULT
public static final SubTypeTransfer UNKNOWN_DEFAULT
-
-
Method Detail
-
values
public static SubTypeTransfer[] 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 (SubTypeTransfer c : SubTypeTransfer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubTypeTransfer 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<SubTypeTransfer>
-
setRawValue
public void setRawValue(String s)
-
getRawValue
public String getRawValue()
-
fromValue
public static SubTypeTransfer fromValue(String value)
-
-