public static enum EmbeddedMediaPlayerComponent.InputEvents extends Enum<EmbeddedMediaPlayerComponent.InputEvents>
Enum Constant and Description |
---|
DEFAULT
Default input event handling, mouse and keyboard listener events will fire.
|
DISABLE_NATIVE
Disable native input event handling, mouse and keyboard listener events will fire.
|
NONE
No input event handling, no mouse or keyboard listener events will fire.
|
Modifier and Type | Method and Description |
---|---|
static EmbeddedMediaPlayerComponent.InputEvents |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmbeddedMediaPlayerComponent.InputEvents[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmbeddedMediaPlayerComponent.InputEvents NONE
public static final EmbeddedMediaPlayerComponent.InputEvents DEFAULT
public static final EmbeddedMediaPlayerComponent.InputEvents DISABLE_NATIVE
This is the mode that is usually required on Windows.
public static EmbeddedMediaPlayerComponent.InputEvents[] values()
for (EmbeddedMediaPlayerComponent.InputEvents c : EmbeddedMediaPlayerComponent.InputEvents.values()) System.out.println(c);
public static EmbeddedMediaPlayerComponent.InputEvents 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–2015 Caprica Software Limited. All rights reserved.