christophedelory.player
Enum PlayerSupport.Player
java.lang.Object
java.lang.Enum<PlayerSupport.Player>
christophedelory.player.PlayerSupport.Player
- All Implemented Interfaces:
- Serializable, Comparable<PlayerSupport.Player>
- Enclosing class:
- PlayerSupport
public static enum PlayerSupport.Player
- extends Enum<PlayerSupport.Player>
The player type.
FOOBAR2000
public static final PlayerSupport.Player FOOBAR2000
ITUNES
public static final PlayerSupport.Player ITUNES
MEDIA_PLAYER_CLASSIC
public static final PlayerSupport.Player MEDIA_PLAYER_CLASSIC
MPLAYER
public static final PlayerSupport.Player MPLAYER
QUICKTIME
public static final PlayerSupport.Player QUICKTIME
REALPLAYER
public static final PlayerSupport.Player REALPLAYER
VLC_MEDIA_PLAYER
public static final PlayerSupport.Player VLC_MEDIA_PLAYER
WINAMP
public static final PlayerSupport.Player WINAMP
WINDOWS_MEDIA_PLAYER
public static final PlayerSupport.Player WINDOWS_MEDIA_PLAYER
values
public static PlayerSupport.Player[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (PlayerSupport.Player c : PlayerSupport.Player.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PlayerSupport.Player valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2008-2009 Christophe Delory. All Rights Reserved.