org.jaudiotagger.tag
Enum FieldKey
java.lang.Object
java.lang.Enum<FieldKey>
org.jaudiotagger.tag.FieldKey
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<FieldKey>
public enum FieldKey
- extends java.lang.Enum<FieldKey>
This is an enumeration of fields implemented by all major formats
This enumeration is used by subclasses to map from the common key to their implementation key, the keys
are grouped within EnumSets within Tag class.
Method Summary |
static FieldKey |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FieldKey[] |
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 |
ALBUM
public static final FieldKey ALBUM
ALBUM_ARTIST
public static final FieldKey ALBUM_ARTIST
ALBUM_ARTIST_SORT
public static final FieldKey ALBUM_ARTIST_SORT
ALBUM_SORT
public static final FieldKey ALBUM_SORT
AMAZON_ID
public static final FieldKey AMAZON_ID
ARTIST
public static final FieldKey ARTIST
ARTIST_SORT
public static final FieldKey ARTIST_SORT
BARCODE
public static final FieldKey BARCODE
BPM
public static final FieldKey BPM
CATALOG_NO
public static final FieldKey CATALOG_NO
COMMENT
public static final FieldKey COMMENT
COMPOSER
public static final FieldKey COMPOSER
COMPOSER_SORT
public static final FieldKey COMPOSER_SORT
CONDUCTOR
public static final FieldKey CONDUCTOR
COVER_ART
public static final FieldKey COVER_ART
CUSTOM1
public static final FieldKey CUSTOM1
CUSTOM2
public static final FieldKey CUSTOM2
CUSTOM3
public static final FieldKey CUSTOM3
CUSTOM4
public static final FieldKey CUSTOM4
CUSTOM5
public static final FieldKey CUSTOM5
DISC_NO
public static final FieldKey DISC_NO
DISC_TOTAL
public static final FieldKey DISC_TOTAL
ENCODER
public static final FieldKey ENCODER
FBPM
public static final FieldKey FBPM
GENRE
public static final FieldKey GENRE
GROUPING
public static final FieldKey GROUPING
ISRC
public static final FieldKey ISRC
IS_COMPILATION
public static final FieldKey IS_COMPILATION
KEY
public static final FieldKey KEY
LANGUAGE
public static final FieldKey LANGUAGE
LYRICIST
public static final FieldKey LYRICIST
LYRICS
public static final FieldKey LYRICS
MEDIA
public static final FieldKey MEDIA
MOOD
public static final FieldKey MOOD
MUSICBRAINZ_ARTISTID
public static final FieldKey MUSICBRAINZ_ARTISTID
MUSICBRAINZ_DISC_ID
public static final FieldKey MUSICBRAINZ_DISC_ID
MUSICBRAINZ_RELEASEARTISTID
public static final FieldKey MUSICBRAINZ_RELEASEARTISTID
MUSICBRAINZ_RELEASEID
public static final FieldKey MUSICBRAINZ_RELEASEID
MUSICBRAINZ_RELEASE_COUNTRY
public static final FieldKey MUSICBRAINZ_RELEASE_COUNTRY
MUSICBRAINZ_RELEASE_GROUP_ID
public static final FieldKey MUSICBRAINZ_RELEASE_GROUP_ID
MUSICBRAINZ_RELEASE_STATUS
public static final FieldKey MUSICBRAINZ_RELEASE_STATUS
MUSICBRAINZ_RELEASE_TYPE
public static final FieldKey MUSICBRAINZ_RELEASE_TYPE
MUSICBRAINZ_TRACK_ID
public static final FieldKey MUSICBRAINZ_TRACK_ID
MUSICBRAINZ_WORK_ID
public static final FieldKey MUSICBRAINZ_WORK_ID
MUSICIP_ID
public static final FieldKey MUSICIP_ID
OCCASION
public static final FieldKey OCCASION
ORIGINAL_ALBUM
public static final FieldKey ORIGINAL_ALBUM
ORIGINAL_ARTIST
public static final FieldKey ORIGINAL_ARTIST
ORIGINAL_LYRICIST
public static final FieldKey ORIGINAL_LYRICIST
ORIGINAL_YEAR
public static final FieldKey ORIGINAL_YEAR
QUALITY
public static final FieldKey QUALITY
RATING
public static final FieldKey RATING
RECORD_LABEL
public static final FieldKey RECORD_LABEL
REMIXER
public static final FieldKey REMIXER
SCRIPT
public static final FieldKey SCRIPT
TAGS
public static final FieldKey TAGS
TEMPO
public static final FieldKey TEMPO
TITLE
public static final FieldKey TITLE
TITLE_SORT
public static final FieldKey TITLE_SORT
TRACK
public static final FieldKey TRACK
TRACK_TOTAL
public static final FieldKey TRACK_TOTAL
URL_DISCOGS_ARTIST_SITE
public static final FieldKey URL_DISCOGS_ARTIST_SITE
URL_DISCOGS_RELEASE_SITE
public static final FieldKey URL_DISCOGS_RELEASE_SITE
URL_LYRICS_SITE
public static final FieldKey URL_LYRICS_SITE
URL_OFFICIAL_ARTIST_SITE
public static final FieldKey URL_OFFICIAL_ARTIST_SITE
URL_OFFICIAL_RELEASE_SITE
public static final FieldKey URL_OFFICIAL_RELEASE_SITE
URL_WIKIPEDIA_ARTIST_SITE
public static final FieldKey URL_WIKIPEDIA_ARTIST_SITE
URL_WIKIPEDIA_RELEASE_SITE
public static final FieldKey URL_WIKIPEDIA_RELEASE_SITE
YEAR
public static final FieldKey YEAR
ENGINEER
public static final FieldKey ENGINEER
PRODUCER
public static final FieldKey PRODUCER
DJMIXER
public static final FieldKey DJMIXER
MIXER
public static final FieldKey MIXER
ARRANGER
public static final FieldKey ARRANGER
values
public static FieldKey[] 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 (FieldKey c : FieldKey.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static FieldKey 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
Copyright © 2005-2010 java.net. All Rights Reserved.