Package com.day.cq.dam.video
Enum FFMpegStoryBoardProcess.Arguments
- java.lang.Object
-
- java.lang.Enum<FFMpegStoryBoardProcess.Arguments>
-
- com.day.cq.dam.video.FFMpegStoryBoardProcess.Arguments
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FFMpegStoryBoardProcess.Arguments>
- Enclosing class:
- FFMpegStoryBoardProcess
public static enum FFMpegStoryBoardProcess.Arguments extends java.lang.Enum<FFMpegStoryBoardProcess.Arguments>
The available arguments to this process implementation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FRAME_COUNT
FRAMES
MAX_HEIGHT
MAX_WIDTH
PROCESS_ARGS
START
UPSCALE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getArgumentName()
java.lang.String
getArgumentPrefix()
static FFMpegStoryBoardProcess.Arguments
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FFMpegStoryBoardProcess.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 FFMpegStoryBoardProcess.Arguments PROCESS_ARGS
-
FRAME_COUNT
public static final FFMpegStoryBoardProcess.Arguments FRAME_COUNT
-
START
public static final FFMpegStoryBoardProcess.Arguments START
-
MAX_WIDTH
public static final FFMpegStoryBoardProcess.Arguments MAX_WIDTH
-
MAX_HEIGHT
public static final FFMpegStoryBoardProcess.Arguments MAX_HEIGHT
-
UPSCALE
public static final FFMpegStoryBoardProcess.Arguments UPSCALE
-
FRAMES
public static final FFMpegStoryBoardProcess.Arguments FRAMES
-
-
Method Detail
-
values
public static FFMpegStoryBoardProcess.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 (FFMpegStoryBoardProcess.Arguments c : FFMpegStoryBoardProcess.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 FFMpegStoryBoardProcess.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
-
getArgumentName
public java.lang.String getArgumentName()
-
getArgumentPrefix
public java.lang.String getArgumentPrefix()
-
-