public enum StageType extends Enum<StageType>
| Enum Constant and Description |
|---|
BLACK_BORDER_DETECT
The stage of black border detect.
|
MEDIAINFO
The stage of media info.
|
NO_TRANSCODING
The stage of no transcoding job.
|
PUBLISH
The stage of PUBLISH.
|
START
The stage of start.
|
SUBTITLE
The stage of subtitle job in mct
|
THUMBNAIL
The stage of thumbnail job in mct.
|
TRANSCODING
The stage of transcoding job in mct.
|
VCA
The stage of vca job.
|
VCR
The stage of vcr job.
|
| Modifier and Type | Method and Description |
|---|---|
static StageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StageType START
public static final StageType PUBLISH
public static final StageType MEDIAINFO
public static final StageType BLACK_BORDER_DETECT
public static final StageType TRANSCODING
public static final StageType THUMBNAIL
public static final StageType NO_TRANSCODING
public static final StageType VCR
public static final StageType VCA
public static final StageType SUBTITLE
public static StageType[] values()
for (StageType c : StageType.values()) System.out.println(c);
public static StageType 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 nullCopyright © 2024. All rights reserved.