Package com.qiniu.rtc.model
Enum MergeTrackParam.ModeEnum
- java.lang.Object
-
- java.lang.Enum<MergeTrackParam.ModeEnum>
-
- com.qiniu.rtc.model.MergeTrackParam.ModeEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MergeTrackParam.ModeEnum>
- Enclosing class:
- MergeTrackParam
public static enum MergeTrackParam.ModeEnum extends java.lang.Enum<MergeTrackParam.ModeEnum>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getVal()
static MergeTrackParam.ModeEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MergeTrackParam.ModeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INCREMENT
public static final MergeTrackParam.ModeEnum INCREMENT
-
FULL
public static final MergeTrackParam.ModeEnum FULL
-
-
Method Detail
-
values
public static MergeTrackParam.ModeEnum[] 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 (MergeTrackParam.ModeEnum c : MergeTrackParam.ModeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MergeTrackParam.ModeEnum 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
-
getVal
public int getVal()
-
-