org.jaudiotagger.tag.reference
Enum Tagger
java.lang.Object
java.lang.Enum<Tagger>
org.jaudiotagger.tag.reference.Tagger
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Tagger>
public enum Tagger
- extends java.lang.Enum<Tagger>
An enumeration of popular tagger applications
This is not meant to be a definitive list but is first attempt to document a list of taggers in order
for us to link nonstandard fields, and link nonstandard tagging to them
Method Summary |
static Tagger |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Tagger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ITUNES
public static final Tagger ITUNES
MEDIAPLAYER
public static final Tagger MEDIAPLAYER
WINAMP
public static final Tagger WINAMP
MP3TAG
public static final Tagger MP3TAG
MEDIA_MONKEY
public static final Tagger MEDIA_MONKEY
TAG_AND_RENAME
public static final Tagger TAG_AND_RENAME
PICARD
public static final Tagger PICARD
JAIKOZ
public static final Tagger JAIKOZ
TAGSCANNER
public static final Tagger TAGSCANNER
XIPH
public static final Tagger XIPH
values
public static Tagger[] 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 (Tagger c : Tagger.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Tagger valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null