public enum InputLocation extends Enum<InputLocation>
| Enum Constant and Description |
|---|
REMOTE_URL
Using a remote URL allows you to host the file and provide us with a direct link to it.
|
SUPPLIED
Supplying the data directly gives you the option to dynamically create email lists on the fly
rather than having to write to a file.
|
| Modifier and Type | Method and Description |
|---|---|
static InputLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputLocation REMOTE_URL
public static final InputLocation SUPPLIED
public static InputLocation[] values()
for (InputLocation c : InputLocation.values()) System.out.println(c);
public static InputLocation 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 © 2017 Metrics Delivered LLC.. All rights reserved.