public static enum IPlayer.MirrorMode extends java.lang.Enum<IPlayer.MirrorMode>
Enum Constant and Description |
---|
MIRROR_MODE_HORIZONTAL
Horizontal mirroring.
|
MIRROR_MODE_NONE
Disable mirroring.
|
MIRROR_MODE_VERTICAL
Vertical mirroring.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Query the value of the specified parameter.
|
static IPlayer.MirrorMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IPlayer.MirrorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPlayer.MirrorMode MIRROR_MODE_NONE
public static final IPlayer.MirrorMode MIRROR_MODE_HORIZONTAL
public static final IPlayer.MirrorMode MIRROR_MODE_VERTICAL
public static IPlayer.MirrorMode[] values()
for (IPlayer.MirrorMode c : IPlayer.MirrorMode.values()) System.out.println(c);
public static IPlayer.MirrorMode 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()