Package com.mayam.wf.config.shared
Enum Class ManagedFolderDefinition.ManagedFileField
java.lang.Object
java.lang.Enum<ManagedFolderDefinition.ManagedFileField>
com.mayam.wf.config.shared.ManagedFolderDefinition.ManagedFileField
- All Implemented Interfaces:
Serializable
,Comparable<ManagedFolderDefinition.ManagedFileField>
,Constable
- Enclosing class:
ManagedFolderDefinition
public static enum ManagedFolderDefinition.ManagedFileField
extends Enum<ManagedFolderDefinition.ManagedFileField>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCategory, as specified via configured CVL.File codec if applicable.User comment.Date and time of file creation or association with task.File name.Media type / MIME type.Picture height if applicable.Picture width if applicable.Path relative to the root path of the managed folder excluding file name.File size in bytes.Primary type of the managed file. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CREATED
Date and time of file creation or association with task. -
TYPE
Primary type of the managed file. -
RELATIVE_PATH
Path relative to the root path of the managed folder excluding file name. -
FILENAME
File name. -
SIZE
File size in bytes. -
MIME_TYPE
Media type / MIME type. -
CATEGORY
Category, as specified via configured CVL. -
COMMENT
User comment. -
CODEC
File codec if applicable. -
PICTURE_HEIGHT
Picture height if applicable. -
PICTURE_WIDTH
Picture width if applicable.
-
-
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
-