public enum PlaybackType extends Enum<PlaybackType>
Enum Constant and Description |
---|
NORMAL
Play tune after another within one favorites list (normal mode)
|
PLAYBACK_OFF |
RANDOM_ALL
Play random tunes within ALL favorites list
|
RANDOM_HVSC
Play random tunes within HVSC
|
RANDOM_ONE
Play random tunes within one favorites list
|
Modifier and Type | Method and Description |
---|---|
static PlaybackType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlaybackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlaybackType PLAYBACK_OFF
public static final PlaybackType NORMAL
public static final PlaybackType RANDOM_ONE
public static final PlaybackType RANDOM_ALL
public static final PlaybackType RANDOM_HVSC
public static PlaybackType[] values()
for (PlaybackType c : PlaybackType.values()) System.out.println(c);
public static PlaybackType 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 © 2018 Ken Händel. All rights reserved.