public enum CreditRating extends java.lang.Enum<CreditRating> implements ICRMLookupEnum
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLabel() |
int |
getOrder() |
void |
setOrder(int order) |
static CreditRating |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CreditRating[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreditRating AAA
public static final CreditRating AA
public static final CreditRating A
public static final CreditRating BAA
public static final CreditRating BA
public static final CreditRating B
public static final CreditRating CAA
public static final CreditRating CA
public static final CreditRating C
public static CreditRating[] values()
for (CreditRating c : CreditRating.values()) System.out.println(c);
public static CreditRating 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 nullpublic java.lang.String getLabel()
getLabel
in interface ICRMLookupEnum
public int getOrder()
public void setOrder(int order)