public enum LoanTradingFormOfPurchase extends Enum<LoanTradingFormOfPurchase>
| Enum Constant and Description |
|---|
Assignment
Loan is legally reassigned to buyer
|
Participation
Loan remains assigned to seller
|
| Modifier and Type | Method and Description |
|---|---|
static LoanTradingFormOfPurchase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoanTradingFormOfPurchase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoanTradingFormOfPurchase Assignment
public static final LoanTradingFormOfPurchase Participation
public static LoanTradingFormOfPurchase[] values()
for (LoanTradingFormOfPurchase c : LoanTradingFormOfPurchase.values()) System.out.println(c);
public static LoanTradingFormOfPurchase valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.