Class ChapterTocFrame
- java.lang.Object
-
- com.google.android.exoplayer2.metadata.id3.Id3Frame
-
- com.google.android.exoplayer2.metadata.id3.ChapterTocFrame
-
- All Implemented Interfaces:
Parcelable
,Metadata.Entry
public final class ChapterTocFrame extends Id3Frame
Chapter table of contents ID3 frame.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface android.os.Parcelable
Parcelable.ClassLoaderCreator<T extends Object>, Parcelable.Creator<T extends Object>
-
-
Field Summary
Fields Modifier and Type Field Description String[]
children
static Parcelable.Creator<ChapterTocFrame>
CREATOR
String
elementId
static String
ID
boolean
isOrdered
boolean
isRoot
-
Fields inherited from interface android.os.Parcelable
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
-
-
Constructor Summary
Constructors Constructor Description ChapterTocFrame(String elementId, boolean isRoot, boolean isOrdered, String[] children, Id3Frame[] subFrames)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Id3Frame
getSubFrame(int index)
Returns the sub-frame atindex
.int
getSubFrameCount()
Returns the number of sub-frames.int
hashCode()
void
writeToParcel(Parcel dest, int flags)
-
Methods inherited from class com.google.android.exoplayer2.metadata.id3.Id3Frame
describeContents, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.google.android.exoplayer2.metadata.Metadata.Entry
getWrappedMetadataBytes, getWrappedMetadataFormat, populateMediaMetadata
-
-
-
-
Field Detail
-
ID
public static final String ID
- See Also:
- Constant Field Values
-
elementId
public final String elementId
-
isRoot
public final boolean isRoot
-
isOrdered
public final boolean isOrdered
-
children
public final String[] children
-
CREATOR
public static final Parcelable.Creator<ChapterTocFrame> CREATOR
-
-