Uses of Class
org.jaudiotagger.tag.TagFieldKey

Packages that use TagFieldKey
org.jaudiotagger.audio.generic   
org.jaudiotagger.tag   
org.jaudiotagger.tag.flac   
org.jaudiotagger.tag.id3   
org.jaudiotagger.tag.mp4   
org.jaudiotagger.tag.vorbiscomment   
 

Uses of TagFieldKey in org.jaudiotagger.audio.generic
 

Methods in org.jaudiotagger.audio.generic with parameters of type TagFieldKey
 TagField AbstractTag.createTagField(TagFieldKey genericKey, java.lang.String value)
           
 void AbstractTag.deleteTagField(TagFieldKey tagFieldKey)
           
 java.util.List<TagField> AbstractTag.get(TagFieldKey id)
           
 java.lang.String AbstractTag.getFirst(TagFieldKey genericKey)
           
 

Uses of TagFieldKey in org.jaudiotagger.tag
 

Methods in org.jaudiotagger.tag that return TagFieldKey
static TagFieldKey TagFieldKey.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TagFieldKey[] TagFieldKey.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in org.jaudiotagger.tag with parameters of type TagFieldKey
 TagField Tag.createTagField(TagFieldKey genericKey, java.lang.String value)
          Create a new TagField based on generic key
 void Tag.deleteTagField(TagFieldKey tagFieldKey)
          Delete any instance of tag fields with this key
 java.util.List<TagField> Tag.get(TagFieldKey id)
          Returns a list of TagField objects whose "id" is the specified one.
 java.lang.String Tag.getFirst(TagFieldKey id)
          Retrieve String value of first tagfield that exists for this key
 

Uses of TagFieldKey in org.jaudiotagger.tag.flac
 

Methods in org.jaudiotagger.tag.flac with parameters of type TagFieldKey
 TagField FlacTag.createTagField(TagFieldKey genericKey, java.lang.String value)
          Create a new TagField based on generic key
 void FlacTag.deleteTagField(TagFieldKey tagFieldKey)
          Delete any instance of tag fields with this key
 java.util.List<TagField> FlacTag.get(TagFieldKey id)
          Returns a list of TagField objects whose "id" is the specified one.
 java.lang.String FlacTag.getFirst(TagFieldKey id)
          Retrieve String value of first tagfield that exists for this key
 

Uses of TagFieldKey in org.jaudiotagger.tag.id3
 

Methods in org.jaudiotagger.tag.id3 with parameters of type TagFieldKey
 TagField ID3v1Tag.createTagField(TagFieldKey genericKey, java.lang.String value)
          Create Tag Field using generic key
 TagField AbstractID3v2Tag.createTagField(TagFieldKey genericKey, java.lang.String value)
          Create a new TagField

Only textual data supported at the moment.

 void ID3v1Tag.deleteTagField(TagFieldKey genericKey)
          Delete any instance of tag fields with this key
 void AbstractID3v2Tag.deleteTagField(TagFieldKey genericKey)
          Delete fields with this generic key
 java.util.List<TagField> ID3v1Tag.get(TagFieldKey genericKey)
          Returns a list of TagField objects whose "id" is the specified one.
 java.util.List<TagField> AbstractID3v2Tag.get(TagFieldKey genericKey)
          Get field(s) for this key
 java.lang.String ID3v1Tag.getFirst(TagFieldKey genericKey)
          Retrieve the first value that exists for this generic key
 java.lang.String AbstractID3v2Tag.getFirst(TagFieldKey genericKey)
          Retrieve the first value that exists for this generic key
 ID3v24FieldKey ID3v24Frames.getId3KeyFromGenericKey(TagFieldKey genericKey)
           
 ID3v23FieldKey ID3v23Frames.getId3KeyFromGenericKey(TagFieldKey genericKey)
           
 ID3v22FieldKey ID3v22Frames.getId3KeyFromGenericKey(TagFieldKey genericKey)
           
 

Uses of TagFieldKey in org.jaudiotagger.tag.mp4
 

Methods in org.jaudiotagger.tag.mp4 with parameters of type TagFieldKey
 TagField Mp4Tag.createTagField(TagFieldKey genericKey, java.lang.String value)
          Create Tag Field using generic key

This should use the correct subclass for the key

 void Mp4Tag.deleteTagField(TagFieldKey genericKey)
          Delete fields with this generic key
 java.util.List<TagField> Mp4Tag.get(TagFieldKey genericKey)
          Maps the generic key to the mp4 key and return the list of values for this field
 java.lang.String Mp4Tag.getFirst(TagFieldKey genericKey)
          Retrieve the first value that exists for this generic key
 

Uses of TagFieldKey in org.jaudiotagger.tag.vorbiscomment
 

Methods in org.jaudiotagger.tag.vorbiscomment with parameters of type TagFieldKey
 TagField VorbisCommentTag.createTagField(TagFieldKey genericKey, java.lang.String value)
          Create Tag Field using generic key
 void VorbisCommentTag.deleteTagField(TagFieldKey genericKey)
          Delete fields with this generic key
 java.util.List<TagField> VorbisCommentTag.get(TagFieldKey genericKey)
          Maps the generic key to the ogg key and return the list of values for this field
 java.lang.String VorbisCommentTag.getFirst(TagFieldKey genericKey)
          Retrieve the first value that exists for this generic key