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