public enum OverdueCancellationPolicy extends java.lang.Enum<OverdueCancellationPolicy>
| Enum Constant and Description |
|---|
END_OF_TERM |
IMMEDIATE |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static OverdueCancellationPolicy |
valueOf(java.lang.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(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 nullCopyright © 2010-2019. All Rights Reserved.