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