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