public static enum VideoDisplay.EndAction extends Enum<VideoDisplay.EndAction>
| Enum Constant and Description |
|---|
CLOSE_AT_END
The player and timekeeper will be CLOSED at the end
|
LOOP
The video will be looped
|
PAUSE_AT_END
The video will be switched to PAUSE mode at the end
|
STOP_AT_END
The video will be switched to STOP mode at the end
|
| Modifier and Type | Method and Description |
|---|---|
static VideoDisplay.EndAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VideoDisplay.EndAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoDisplay.EndAction STOP_AT_END
public static final VideoDisplay.EndAction PAUSE_AT_END
public static final VideoDisplay.EndAction LOOP
public static final VideoDisplay.EndAction CLOSE_AT_END
public static VideoDisplay.EndAction[] values()
for (VideoDisplay.EndAction c : VideoDisplay.EndAction.values()) System.out.println(c);
public static VideoDisplay.EndAction 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 null