public enum AlternateFileType extends Enum<AlternateFileType>
AlternateFileType
enum holds the optional types of alternate files in the EngineConfig tool. Each
AlternateFileType holds a list of strings that represent it.Enum Constant and Description |
---|
OPTION_CONFIG |
OPTION_PROPERTIES |
Modifier and Type | Method and Description |
---|---|
List<String> |
getOptionalStrings() |
static AlternateFileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlternateFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlternateFileType OPTION_CONFIG
public static final AlternateFileType OPTION_PROPERTIES
public static AlternateFileType[] values()
for (AlternateFileType c : AlternateFileType.values()) System.out.println(c);
public static AlternateFileType 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 © 2012. All Rights Reserved.