public enum FileProcess extends Enum<FileProcess> implements ConfigurationItem
| Enum Constant and Description | 
|---|
| FILEThe script key of target path(s). | 
| Modifier and Type | Method and Description | 
|---|---|
| String | description()Returns the description of target item. | 
| String | key()Returns the key name of target item. | 
| static FileProcess | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static FileProcess[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FileProcess FILE
public static FileProcess[] values()
for (FileProcess c : FileProcess.values()) System.out.println(c);
public static FileProcess 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 nullpublic final String key()
ConfigurationItemkey in interface ConfigurationItempublic String description()
ConfigurationItemdescription in interface ConfigurationItemCopyright © 2011–2019 Asakusa Framework Team. All rights reserved.