public static enum IPlayer.AlphaRenderMode extends java.lang.Enum<IPlayer.AlphaRenderMode>
Enum Constant and Description |
---|
RENDER_MODE_ALPHA_AT_BOTTOM
alpha at bottom.
|
RENDER_MODE_ALPHA_AT_LEFT
alpha at left.
|
RENDER_MODE_ALPHA_AT_RIGHT
alpha at right.
|
RENDER_MODE_ALPHA_AT_TOP
alpha at top.
|
RENDER_MODE_ALPHA_NONE
Disable alpha render mode.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Query the value of the specified parameter.
|
static IPlayer.AlphaRenderMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IPlayer.AlphaRenderMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPlayer.AlphaRenderMode RENDER_MODE_ALPHA_NONE
public static final IPlayer.AlphaRenderMode RENDER_MODE_ALPHA_AT_RIGHT
public static final IPlayer.AlphaRenderMode RENDER_MODE_ALPHA_AT_LEFT
public static final IPlayer.AlphaRenderMode RENDER_MODE_ALPHA_AT_TOP
public static final IPlayer.AlphaRenderMode RENDER_MODE_ALPHA_AT_BOTTOM
public static IPlayer.AlphaRenderMode[] values()
for (IPlayer.AlphaRenderMode c : IPlayer.AlphaRenderMode.values()) System.out.println(c);
public static IPlayer.AlphaRenderMode 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()