public enum OverdueActions extends Enum<OverdueActions>
OverdueActions specifies the policies that should be taken when a specific object becomes overdue| Enum Constant and Description |
|---|
CANCEL |
PAYMENT_RETRY |
| Modifier and Type | Method and Description |
|---|---|
static OverdueActions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OverdueActions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OverdueActions CANCEL
public static final OverdueActions PAYMENT_RETRY
public static OverdueActions[] values()
for (OverdueActions c : OverdueActions.values()) System.out.println(c);
public static OverdueActions 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 © 2010-2015. All Rights Reserved.