Class ID3Frame.ChapterToc
-
- All Implemented Interfaces:
public final class ID3Frame.ChapterToc extends ID3Frame
A chapter table of contents ID3 frame.
See section 3.2 of https://id3.org/id3v2-chapters-1.0 for more information.
-
-
Method Summary
Modifier and Type Method Description final String
getElementId()
The unique identifier for this chapter table of contents. final Boolean
isTopLevel()
Whether this is the root of the table of contents tree, and not a child of any other ChapterToc frame. final Boolean
isOrdered()
Whether the list of children is ordered. final List<String>
getChildren()
The list of child element IDs. final List<ID3Frame>
getSubFrames()
The sub-frames describing this table of contents. -
-
Method Detail
-
getElementId
final String getElementId()
The unique identifier for this chapter table of contents.
-
isTopLevel
final Boolean isTopLevel()
Whether this is the root of the table of contents tree, and not a child of any other ChapterToc frame.
-
getChildren
final List<String> getChildren()
The list of child element IDs. See Chapter.elementId and ChapterToc.elementId.
-
getSubFrames
final List<ID3Frame> getSubFrames()
The sub-frames describing this table of contents.
-
-
-
-