public enum TransparencyMode extends Enum<TransparencyMode> implements ConfigValue
Enum Constant and Description |
---|
OPAQUE
Hides everything on the page behind the player.
|
TRANSPARENT
The background of the page shows through all transparent
portions of the player.
|
WINDOW
The video is placed in its own rectangular window on a page.
|
Modifier and Type | Method and Description |
---|---|
static TransparencyMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransparencyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransparencyMode TRANSPARENT
public static final TransparencyMode WINDOW
public static final TransparencyMode OPAQUE
public static TransparencyMode[] values()
for (TransparencyMode c : TransparencyMode.values()) System.out.println(c);
public static TransparencyMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2009-2013. All Rights Reserved.