public enum HandleOption extends java.lang.Enum<HandleOption>
| Enum Constant and Description |
|---|
IGNORE |
INTERNATIONAL |
MAILFULLPAY |
MAILPRESORT |
RETURN |
RETURN_INSERTED |
| Modifier and Type | Method and Description |
|---|---|
static HandleOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HandleOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandleOption MAILPRESORT
public static final HandleOption MAILFULLPAY
public static final HandleOption INTERNATIONAL
public static final HandleOption IGNORE
public static final HandleOption RETURN
public static final HandleOption RETURN_INSERTED
public static HandleOption[] values()
for (HandleOption c : HandleOption.values()) System.out.println(c);
public static HandleOption 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 null