| Enum Constant and Description |
|---|
BUFFERING
The player is buffering
|
EOM
EOM stands for "END OF MEDIA".
|
GAIN
player gain has changed.
|
INIT
INITIALIZING
|
NOT_SPECIFIED
UNKOWN STATUS.
|
OPENED
AudioInputStream is opened.
|
OPENING
In the process of opening the AudioInputStream.
|
PAN
player pan has changed.
|
PAUSED
player is paused.
|
PLAYING
play event has been fired.
|
RESUMED
resume event is fired.
|
SEEKED
seek work has been done.
|
SEEKING
player is in the process of seeking.
|
STOPPED
player is stopped.
|
| Modifier and Type | Method and Description |
|---|---|
static Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status INIT
public static final Status NOT_SPECIFIED
public static final Status OPENING
public static final Status OPENED
public static final Status PLAYING
public static final Status STOPPED
public static final Status PAUSED
public static final Status RESUMED
public static final Status SEEKING
public static final Status BUFFERING
public static final Status SEEKED
public static final Status EOM
public static final Status PAN
public static final Status GAIN
public static Status[] values()
for (Status c : Status.values()) System.out.println(c);
public static Status 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 nullCopyright © 2019. All rights reserved.