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