Package mc.core.model.asset
Enum Class AssetHotfolder.DirImportStrategy
java.lang.Object
java.lang.Enum<AssetHotfolder.DirImportStrategy>
mc.core.model.asset.AssetHotfolder.DirImportStrategy
- All Implemented Interfaces:
Serializable,Comparable<AssetHotfolder.DirImportStrategy>,Constable
- Enclosing class:
- AssetHotfolder
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionimport all files from hotfolder and sub folders recursive without folder structureunzip file and import with folder structuremove in rejected folder (see rejectedFolderPath)import all files from hotfolder, sub folders be ziped and imported -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static AssetHotfolder.DirImportStrategy[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
REJECT
move in rejected folder (see rejectedFolderPath) -
ZIP
import all files from hotfolder, sub folders be ziped and imported -
IMPORT_ASSETS
import all files from hotfolder and sub folders recursive without folder structure -
IMPORT_ASSETS_AND_FOLDERS
unzip file and import with folder structure
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-