public enum LoanOrderStates extends Enum<LoanOrderStates>
| Modifier and Type | Method and Description |
|---|---|
static LoanOrderStates |
lookup(String name) |
String |
toString() |
static LoanOrderStates |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoanOrderStates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoanOrderStates CREATED
public static final LoanOrderStates ACCRUAL
public static final LoanOrderStates CLEARED
public static final LoanOrderStates INVALID
public static LoanOrderStates[] values()
for (LoanOrderStates c : LoanOrderStates.values()) System.out.println(c);
public static LoanOrderStates 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 nullpublic String toString()
toString in class Enum<LoanOrderStates>public static LoanOrderStates lookup(String name)
Copyright © 2021. All rights reserved.