Class ID3Frame
-
- All Implemented Interfaces:
public abstract class ID3FrameA generic ID3 frame.
All ID3 frames returned by ID3Cue.getFrame inherit from this class. You should use
is(in Kotlin) orinstanceof(in Java) to check whether the frame is of a specific type (e.g. ID3Frame.Text), and cast to that type to access the inner data.This class and its subclasses are not stable to construct or inherit from in third-party code.
See https://id3.org/ for more information.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classID3Frame.UnknownAn unknown ID3 frame.
public final classID3Frame.AttachedPictureAn attached picture ID3 frame.
See section 4.14 of https://id3.org/id3v2.4.0-frames for more information.
public final classID3Frame.CommentsA comments ID3 frame.
See section 4.10 of https://id3.org/id3v2.4.0-frames for more information.
public final classID3Frame.ChapterA chapter ID3 frame.
See section 3.1 of https://id3.org/id3v2-chapters-1.0 for more information.
public final classID3Frame.ChapterTocA chapter table of contents ID3 frame.
See section 3.2 of https://id3.org/id3v2-chapters-1.0 for more information.
public final classID3Frame.GeneralEncapsulatedObjectA general encapsulated object ID3 frame.
See section 4.15 of https://id3.org/id3v2.4.0-frames for more information.
public final classID3Frame.PrivateA private ID3 frame.
See section 4.27 of https://id3.org/id3v2.4.0-frames for more information.
public final classID3Frame.TextA text ID3 frame.
See section 4.2 of https://id3.org/id3v2.4.0-frames for more information.
public final classID3Frame.UrlA URL link ID3 frame.
See section 4.3 of https://id3.org/id3v2.4.0-frames for more information.
public final classID3Frame.YospaceA Yospace ID3 frame.
See the Yospace documentation for more information.
-