Class TextInformationFrame
- java.lang.Object
-
- com.google.android.exoplayer2.metadata.id3.Id3Frame
-
- com.google.android.exoplayer2.metadata.id3.TextInformationFrame
-
- All Implemented Interfaces:
Parcelable
,Metadata.Entry
public final class TextInformationFrame extends Id3Frame
Text information 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 static Parcelable.Creator<TextInformationFrame>
CREATOR
String
description
String
value
-
Fields inherited from interface android.os.Parcelable
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
-
-
Constructor Summary
Constructors Constructor Description TextInformationFrame(String id, String description, String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
int
hashCode()
void
populateMediaMetadata(MediaMetadata.Builder builder)
Updates theMediaMetadata.Builder
with the type specific values stored in this Entry.String
toString()
void
writeToParcel(Parcel dest, int flags)
-
Methods inherited from class com.google.android.exoplayer2.metadata.id3.Id3Frame
describeContents
-
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
-
-
-
-
Field Detail
-
description
@Nullable public final String description
-
value
public final String value
-
CREATOR
public static final Parcelable.Creator<TextInformationFrame> CREATOR
-
-
Method Detail
-
populateMediaMetadata
public void populateMediaMetadata(MediaMetadata.Builder builder)
Description copied from interface:Metadata.Entry
Updates theMediaMetadata.Builder
with the type specific values stored in this Entry.The order of the
Metadata.Entry
objects in theMetadata
matters. If twoMetadata.Entry
entries attempt to populate the sameMediaMetadata
field, then the last one in the list is used.- Parameters:
builder
- The builder to be updated.
-
writeToParcel
public void writeToParcel(Parcel dest, int flags)
-
-