public static enum Constants.VideoOrientation extends java.lang.Enum<Constants.VideoOrientation>
| Enum Constant and Description |
|---|
VIDEO_ORIENTATION_0
0: Rotate the video by 0 degree clockwise.
|
VIDEO_ORIENTATION_180
180: Rotate the video by 180 degrees clockwise.
|
VIDEO_ORIENTATION_270
270: Rotate the video by 270 degrees clockwise.
|
VIDEO_ORIENTATION_90
90: Rotate the video by 90 degrees clockwise.
|
| Modifier and Type | Field and Description |
|---|---|
private int |
value |
| Modifier and Type | Method and Description |
|---|---|
static Constants.VideoOrientation |
fromInt(int value) |
int |
getValue() |
static Constants.VideoOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.VideoOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.VideoOrientation VIDEO_ORIENTATION_0
public static final Constants.VideoOrientation VIDEO_ORIENTATION_90
public static final Constants.VideoOrientation VIDEO_ORIENTATION_180
public static final Constants.VideoOrientation VIDEO_ORIENTATION_270
public static Constants.VideoOrientation[] values()
for (Constants.VideoOrientation c : Constants.VideoOrientation.values()) System.out.println(c);
public static Constants.VideoOrientation 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()
public static Constants.VideoOrientation fromInt(int value)