Uses of Class
pgbennett.id3.ID3v2FormatException

Packages that use ID3v2FormatException
pgbennett.id3   
 

Uses of ID3v2FormatException in pgbennett.id3
 

Methods in pgbennett.id3 that throw ID3v2FormatException
 java.lang.String MP3File.getAlbum()
          Returns the album of the mp3 if set and the empty string if not.
 java.lang.String MP3File.getArtist()
          Returns the artist of the mp3 if set and the empty string if not.
 java.lang.String MP3File.getComment()
          Returns the comment field of this mp3 if set and the empty string if not.
 java.lang.String MP3File.getComposer()
          Returns the composer of this mp3 if set and the empty string if not (id3v2 only).
 java.lang.String MP3File.getCopyrightInfo()
          Returns the copyright info of this mp3 if set and the empty string if not (id3v2 only).
 java.lang.String ID3v2Frame.getDataString()
          If possible, this method attempts to convert textual part of the data into a string.
 java.lang.String MP3File.getEncodedBy()
          Returns who encoded this mp3 if set and the empty string if not (id3v2 only).
 java.lang.String ID3v2Tag.getFrameDataString(java.lang.String id)
          Returns the textual information contained in the frame specified by the id.
 java.lang.String MP3File.getFrameDataString(java.lang.String id)
          Returns the textual information contained in the frame specifed by the id.
 java.lang.String MP3File.getGenre()
          Returns the genre of this mp3 if set and the empty string if not.
 int MP3File.getNumTracks()
          Although not a standard, sometimes track numbers are expressed as "x/y" where x is the track number and y is the total number of tracks on an album.
 java.lang.String MP3File.getOriginalArtist()
          Returns the original artist of this mp3 if set and the empty string if not (id3v2 only).
 java.lang.String MP3File.getTitle()
          Returns the title of this mp3 if set and the empty string if not.
 int MP3File.getTrack()
          Returns an integer value of the track number.
 java.lang.String MP3File.getTrackString()
          Returns the track exactly as the track field of the id3 tag reads.
 java.lang.String MP3File.getUserDefinedURL()
          Returns the user defined url of this mp3 if set and the empty string if not (id3v2 only).
 java.lang.String MP3File.getYear()
          Returns the year of this mp3 if set and the empty string if not.
 void MP3File.init(java.io.File mp3, int tagType)
           
 void MP3File.init(java.io.File mp3, int tagType, int offset)
           
 void MP3File.syncV1AndV2()
           
 

Constructors in pgbennett.id3 that throw ID3v2FormatException
ID3v2ExtendedHeader(java.io.File mp3, int majorVersion, boolean unSynchronization)
          Create an extended header object from the file passed.
ID3v2Frame(java.lang.String id, byte[] flags, byte[] data, int majorVersion)
          Create an ID3v2Frame with a specified id, a byte array containing the frame header flags, and a byte array containing the data for this frame.
ID3v2Tag(java.io.File mp3, long mpegOffset)
          Create an id3v2 tag bound to the file provided as a parameter.
ID3v2Tag(java.io.File mp3, long mpegOffset, boolean emptyTag)