FileDocCategorySizeDatePackage
FrameBodyTSIZ.javaAPI DocJaudiotagger 2.0.42559Wed Mar 30 16:12:02 BST 2011org.jaudiotagger.tag.id3.framebody

FrameBodyTSIZ

public class FrameBodyTSIZ extends AbstractFrameBodyTextInfo implements ID3v23FrameBody
Size Text information frame.

The 'Size' frame contains the size of the audiofile in bytes, excluding the ID3v2 tag, represented as a numeric string.

For more details, please refer to the ID3 specifications:

author
: Paul Taylor
author
: Eric Farng
version
$Id: FrameBodyTSIZ.java 832 2009-11-12 13:25:38Z paultaylor $

Fields Summary
Constructors Summary
public FrameBodyTSIZ()
Creates a new FrameBodyTSIZ datatype.

    
public FrameBodyTSIZ(FrameBodyTSIZ body)

        super(body);
    
public FrameBodyTSIZ(byte textEncoding, String text)
Creates a new FrameBodyTSIZ datatype.

param
textEncoding
param
text

        super(textEncoding, text);
    
public FrameBodyTSIZ(ByteBuffer byteBuffer, int frameSize)
Creates a new FrameBodyTSIZ datatype.

param
byteBuffer
param
frameSize
throws
InvalidTagException

        super(byteBuffer, frameSize);
    
Methods Summary
public java.lang.StringgetIdentifier()
The ID3v2 frame identifier

return
the ID3v2 frame identifier for this frame type

        return ID3v23Frames.FRAME_ID_V3_TSIZ;