public enum FundTransferType extends java.lang.Enum<FundTransferType>
| Modifier and Type | Method and Description |
|---|---|
static FundTransferType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FundTransferType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="AA") public static final FundTransferType AA
@SerializedName(value="PP") public static final FundTransferType PP
@SerializedName(value="FT") public static final FundTransferType FT
@SerializedName(value="FD") public static final FundTransferType FD
@SerializedName(value="PD") public static final FundTransferType PD
@SerializedName(value="LO") public static final FundTransferType LO
@SerializedName(value="OG") public static final FundTransferType OG
public static FundTransferType[] values()
for (FundTransferType c : FundTransferType.values()) System.out.println(c);
public static FundTransferType 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