Package com.day.cq.dam.core.process
Enum CreateWebEnabledImageProcess.Arguments
- java.lang.Object
-
- java.lang.Enum<CreateWebEnabledImageProcess.Arguments>
-
- com.day.cq.dam.core.process.CreateWebEnabledImageProcess.Arguments
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CreateWebEnabledImageProcess.Arguments>
- Enclosing class:
- CreateWebEnabledImageProcess
public static enum CreateWebEnabledImageProcess.Arguments extends java.lang.Enum<CreateWebEnabledImageProcess.Arguments>
Enum mixing old and new metadata argument names.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIMENSION
HEIGHT
KEEP_FORMAT_LIST
MIME_TYPE
PROCESS_ARGS
QUALITY
SKIP
WIDTH
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
legacyName
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CreateWebEnabledImageProcess.Arguments
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CreateWebEnabledImageProcess.Arguments[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROCESS_ARGS
public static final CreateWebEnabledImageProcess.Arguments PROCESS_ARGS
-
DIMENSION
public static final CreateWebEnabledImageProcess.Arguments DIMENSION
-
WIDTH
public static final CreateWebEnabledImageProcess.Arguments WIDTH
-
HEIGHT
public static final CreateWebEnabledImageProcess.Arguments HEIGHT
-
QUALITY
public static final CreateWebEnabledImageProcess.Arguments QUALITY
-
MIME_TYPE
public static final CreateWebEnabledImageProcess.Arguments MIME_TYPE
-
KEEP_FORMAT_LIST
public static final CreateWebEnabledImageProcess.Arguments KEEP_FORMAT_LIST
-
SKIP
public static final CreateWebEnabledImageProcess.Arguments SKIP
-
-
Method Detail
-
values
public static CreateWebEnabledImageProcess.Arguments[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CreateWebEnabledImageProcess.Arguments c : CreateWebEnabledImageProcess.Arguments.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreateWebEnabledImageProcess.Arguments valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-