FrameBodyTYERpublic class FrameBodyTYER extends AbstractFrameBodyTextInfo implements ID3v23FrameBodyYear Text information frame.
The 'Year' frame is a numeric string with a year of the recording. This frames is always four characters long (until the year 10000).
Deprecated in v2.4.0
For more details, please refer to the ID3 specifications:
|
Constructors Summary |
---|
public FrameBodyTYER()Creates a new FrameBodyTYER datatype.
| public FrameBodyTYER(FrameBodyTYER body)
super(body);
| public FrameBodyTYER(FrameBodyTDRC body)When converting v4 TDRC frame to v3 TYER
setObjectValue(DataTypes.OBJ_TEXT_ENCODING, TextEncoding.ISO_8859_1);
setObjectValue(DataTypes.OBJ_TEXT, body.getText());
| public FrameBodyTYER(byte textEncoding, String text)Creates a new FrameBodyTYER datatype.
super(textEncoding, text);
| public FrameBodyTYER(ByteBuffer byteBuffer, int frameSize)Creates a new FrameBodyTYER datatype.
super(byteBuffer, frameSize);
|
Methods Summary |
---|
public java.lang.String | getIdentifier()The ID3v2 frame identifier
return ID3v23Frames.FRAME_ID_V3_TYER;
|
|