public enum PlaybackLocation extends java.lang.Enum<PlaybackLocation>
Enum Constant and Description |
---|
LOCAL
Local playback location.
|
REMOTE
Remote playback location.
|
Modifier and Type | Method and Description |
---|---|
static PlaybackLocation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlaybackLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlaybackLocation LOCAL
public static final PlaybackLocation REMOTE
public static PlaybackLocation[] values()
for (PlaybackLocation c : PlaybackLocation.values()) System.out.println(c);
public static PlaybackLocation 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 null