org.jaudiotagger.tag.vorbiscomment
Enum VorbisCommentFieldKey

java.lang.Object
  extended by java.lang.Enum<VorbisCommentFieldKey>
      extended by org.jaudiotagger.tag.vorbiscomment.VorbisCommentFieldKey
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<VorbisCommentFieldKey>

public enum VorbisCommentFieldKey
extends java.lang.Enum<VorbisCommentFieldKey>

Common Vorbis Comment Field Names

Note:The enumname is also the the actual name of the field in the VorbisCommentTag, but you could introduce a level of indirection here if required.

This partial list is derived fom the following sources:


Enum Constant Summary
ALBUM
           
ALBUMARTIST
           
ALBUMARTISTSORT
           
ALBUMSORT
           
ARTIST
           
ARTISTSORT
           
ASIN
           
BPM
           
COMMENT
           
COMPILATION
           
COMPOSER
           
COMPOSERSORT
           
COVERART
           
COVERARTMIME
           
DATE
           
DESCRIPTION
           
DISCNUMBER
           
GENRE
           
GROUPING
           
LYRICS
           
MUSICBRAINZ_ALBUMARTISTID
           
MUSICBRAINZ_ALBUMID
           
MUSICBRAINZ_ALBUMSTATUS
           
MUSICBRAINZ_ALBUMTYPE
           
MUSICBRAINZ_ARTISTID
           
MUSICBRAINZ_DISCID
           
MUSICBRAINZ_TRACKID
           
MUSICIP_PUID
           
RELEASECOUNTRY
           
TITLE
           
TITLESORT
           
TRACKNUMBER
           
VENDOR
           
 
Method Summary
static VorbisCommentFieldKey valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VorbisCommentFieldKey[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ARTIST

public static final VorbisCommentFieldKey ARTIST

ALBUM

public static final VorbisCommentFieldKey ALBUM

DESCRIPTION

public static final VorbisCommentFieldKey DESCRIPTION

GENRE

public static final VorbisCommentFieldKey GENRE

TITLE

public static final VorbisCommentFieldKey TITLE

TRACKNUMBER

public static final VorbisCommentFieldKey TRACKNUMBER

DATE

public static final VorbisCommentFieldKey DATE

COMMENT

public static final VorbisCommentFieldKey COMMENT

ALBUMARTIST

public static final VorbisCommentFieldKey ALBUMARTIST

COMPOSER

public static final VorbisCommentFieldKey COMPOSER

GROUPING

public static final VorbisCommentFieldKey GROUPING

DISCNUMBER

public static final VorbisCommentFieldKey DISCNUMBER

BPM

public static final VorbisCommentFieldKey BPM

MUSICBRAINZ_ARTISTID

public static final VorbisCommentFieldKey MUSICBRAINZ_ARTISTID

MUSICBRAINZ_ALBUMID

public static final VorbisCommentFieldKey MUSICBRAINZ_ALBUMID

MUSICBRAINZ_ALBUMARTISTID

public static final VorbisCommentFieldKey MUSICBRAINZ_ALBUMARTISTID

MUSICBRAINZ_TRACKID

public static final VorbisCommentFieldKey MUSICBRAINZ_TRACKID

MUSICBRAINZ_DISCID

public static final VorbisCommentFieldKey MUSICBRAINZ_DISCID

MUSICIP_PUID

public static final VorbisCommentFieldKey MUSICIP_PUID

ASIN

public static final VorbisCommentFieldKey ASIN

MUSICBRAINZ_ALBUMSTATUS

public static final VorbisCommentFieldKey MUSICBRAINZ_ALBUMSTATUS

MUSICBRAINZ_ALBUMTYPE

public static final VorbisCommentFieldKey MUSICBRAINZ_ALBUMTYPE

RELEASECOUNTRY

public static final VorbisCommentFieldKey RELEASECOUNTRY

LYRICS

public static final VorbisCommentFieldKey LYRICS

COMPILATION

public static final VorbisCommentFieldKey COMPILATION

ARTISTSORT

public static final VorbisCommentFieldKey ARTISTSORT

ALBUMARTISTSORT

public static final VorbisCommentFieldKey ALBUMARTISTSORT

ALBUMSORT

public static final VorbisCommentFieldKey ALBUMSORT

TITLESORT

public static final VorbisCommentFieldKey TITLESORT

COMPOSERSORT

public static final VorbisCommentFieldKey COMPOSERSORT

COVERARTMIME

public static final VorbisCommentFieldKey COVERARTMIME

COVERART

public static final VorbisCommentFieldKey COVERART

VENDOR

public static final VorbisCommentFieldKey VENDOR
Method Detail

values

public static final VorbisCommentFieldKey[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(VorbisCommentFieldKey c : VorbisCommentFieldKey.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static VorbisCommentFieldKey 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