public enum OverdueCancellationPolicy extends Enum<OverdueCancellationPolicy>
| Enum Constant and Description |
|---|
END_OF_TERM |
IMMEDIATE |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static OverdueCancellationPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OverdueCancellationPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OverdueCancellationPolicy END_OF_TERM
public static final OverdueCancellationPolicy IMMEDIATE
public static final OverdueCancellationPolicy NONE
public static OverdueCancellationPolicy[] values()
for (OverdueCancellationPolicy c : OverdueCancellationPolicy.values()) System.out.println(c);
public static OverdueCancellationPolicy 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-2016. All Rights Reserved.