public static enum VideoEncoderConfiguration.MIRROR_MODE_TYPE extends java.lang.Enum<VideoEncoderConfiguration.MIRROR_MODE_TYPE>
Enum Constant and Description |
---|
MIRROR_MODE_AUTO
(Default) 0: The mirror mode determined by the SDK.
|
MIRROR_MODE_DISABLED
2: Disable the mirror mode.
|
MIRROR_MODE_ENABLED
1: Enable the mirror mode.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static VideoEncoderConfiguration.MIRROR_MODE_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VideoEncoderConfiguration.MIRROR_MODE_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoEncoderConfiguration.MIRROR_MODE_TYPE MIRROR_MODE_AUTO
public static final VideoEncoderConfiguration.MIRROR_MODE_TYPE MIRROR_MODE_ENABLED
public static final VideoEncoderConfiguration.MIRROR_MODE_TYPE MIRROR_MODE_DISABLED
public static VideoEncoderConfiguration.MIRROR_MODE_TYPE[] values()
for (VideoEncoderConfiguration.MIRROR_MODE_TYPE c : VideoEncoderConfiguration.MIRROR_MODE_TYPE.values()) System.out.println(c);
public static VideoEncoderConfiguration.MIRROR_MODE_TYPE valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()