public static enum TcrRenderView.VideoRotation extends java.lang.Enum<TcrRenderView.VideoRotation>
Enum Constant and Description |
---|
ROTATION_0
A 0-degree rotation
|
ROTATION_180
A 180-degree rotation
|
ROTATION_270
A 270-degree rotation
|
ROTATION_90
A 90-degree rotation
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Return the angle value.
|
java.lang.String |
toString() |
static TcrRenderView.VideoRotation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TcrRenderView.VideoRotation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TcrRenderView.VideoRotation ROTATION_0
public static final TcrRenderView.VideoRotation ROTATION_90
public static final TcrRenderView.VideoRotation ROTATION_180
public static final TcrRenderView.VideoRotation ROTATION_270
public static TcrRenderView.VideoRotation[] values()
for (TcrRenderView.VideoRotation c : TcrRenderView.VideoRotation.values()) System.out.println(c);
public static TcrRenderView.VideoRotation 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 java.lang.String toString()
toString
in class java.lang.Enum<TcrRenderView.VideoRotation>
public int getValue()