public static enum IPlayer.RotateMode extends java.lang.Enum<IPlayer.RotateMode>
Enum Constant and Description |
---|
ROTATE_0
Do not rotate.
|
ROTATE_180
Rotate 180 degree clockwise.
|
ROTATE_270
Rotate 270 degree clockwise.
|
ROTATE_90
Rotate 90 degree clockwise.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Query the value of the specified parameter.
|
static IPlayer.RotateMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IPlayer.RotateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPlayer.RotateMode ROTATE_0
public static final IPlayer.RotateMode ROTATE_90
public static final IPlayer.RotateMode ROTATE_180
public static final IPlayer.RotateMode ROTATE_270
public static IPlayer.RotateMode[] values()
for (IPlayer.RotateMode c : IPlayer.RotateMode.values()) System.out.println(c);
public static IPlayer.RotateMode 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()