public static enum LinphonePlayer.State extends Enum<LinphonePlayer.State>
Modifier and Type | Method and Description |
---|---|
static LinphonePlayer.State |
fromValue(int value) |
static LinphonePlayer.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinphonePlayer.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinphonePlayer.State closed
public static final LinphonePlayer.State paused
public static final LinphonePlayer.State playing
public static LinphonePlayer.State[] values()
for (LinphonePlayer.State c : LinphonePlayer.State.values()) System.out.println(c);
public static LinphonePlayer.State 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 nullpublic static LinphonePlayer.State fromValue(int value)