Uses of Class
helliker.id3.ID3v2FormatException

Packages that use ID3v2FormatException
helliker.id3   
 

Uses of ID3v2FormatException in helliker.id3
 

Methods in helliker.id3 that throw ID3v2FormatException
 java.lang.String MP3File.getArtist()
          Returns the artist of the mp3 if set and the empty string if not.
 java.lang.String MP3File.getAlbum()
          Returns the album 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.getGenre()
          Returns the genre of this mp3 if set and the empty string if not.
 java.lang.String MP3File.getTitle()
          Returns the title of this mp3 if set and the empty string if not.
 java.lang.String MP3File.getTrackString()
          Returns the track exactly as the track field of the id3 tag reads.
 int MP3File.getTrack()
          Returns an integer value of the track number.
 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.getYear()
          Returns the year 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.getOriginalArtist()
          Returns the original artist 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 MP3File.getUserDefinedURL()
          Returns the user defined url of this mp3 if set and the empty string if not (id3v2 only).
 java.lang.String MP3File.getEncodedBy()
          Returns who encoded this mp3 if set and the empty string if not (id3v2 only).
 java.lang.String MP3File.getFrameDataString(java.lang.String id)
          Returns the textual information contained in the frame specifed by the id.
 java.lang.String ID3v2Tag.getFrameDataString(java.lang.String id)
          Returns the textual information contained in the frame specified by the id.
 java.lang.String ID3v2Frame.getDataString()
          If possible, this method attempts to convert textual part of the data into a string.
 

Constructors in helliker.id3 that throw ID3v2FormatException
MP3File(java.lang.String fn)
          Create an MP3File object that reads and writes to the file with the filename fn.
MP3File(java.io.File mp3)
          Create an MP3File object that reads and writes to the specified file.
MP3File(java.lang.String fn, int tagType)
          Create an MP3File object that reads and writes to the file with the filename fn.
MP3File(java.io.File mp3, int tagType)
          Create and MP3File object that reads and writes to the specified file.
ID3v2Tag(java.io.File mp3, long mpegOffset)
          Create an id3v2 tag bound to the file provided as a parameter.
ID3v2Frame(java.lang.String id, byte[] flags, byte[] data)
          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.
ID3v2ExtendedHeader(java.io.File mp3)
          Create an extended header object from the file passed.