TableRequest
class TableRequest : BroadcastInfoRequest, Parcelable
kotlin.Any | ||
↳ | android.media.tv.BroadcastInfoRequest | |
↳ | android.media.tv.TableRequest |
A request for Table from broadcast signal.
Summary
Constants | |
---|---|
static Int |
Bouquet Association Table |
static Int |
Conditional Access Table |
static Int |
Event Information Table |
static Int |
Network Information Table |
static Int |
Program Association Table |
static Int |
Program Mapping Table |
static Int |
Service Description Table |
static Int |
Selection Information Table |
static Int |
Time and Date Table |
static Int |
Time Offset Table |
Inherited constants | |
---|---|
Public constructors | |
---|---|
Public methods | |
---|---|
Int | |
Int |
Gets the ID of requested table. |
Int |
Gets the name of requested table. |
Int |
Gets the version number of requested table. |
Unit |
writeToParcel(dest: Parcel, flags: Int) Flatten this object in to a Parcel. |
Inherited functions | |
---|---|
Properties | |
---|---|
static Parcelable.Creator<TableRequest!> |
Constants
TABLE_NAME_BAT
static val TABLE_NAME_BAT: Int
Bouquet Association Table
Value: 4
TABLE_NAME_CAT
static val TABLE_NAME_CAT: Int
Conditional Access Table
Value: 2
TABLE_NAME_EIT
static val TABLE_NAME_EIT: Int
Event Information Table
Value: 6
TABLE_NAME_NIT
static val TABLE_NAME_NIT: Int
Network Information Table
Value: 3
TABLE_NAME_PAT
static val TABLE_NAME_PAT: Int
Program Association Table
Value: 0
TABLE_NAME_SDT
static val TABLE_NAME_SDT: Int
Service Description Table
Value: 5
TABLE_NAME_SIT
static val TABLE_NAME_SIT: Int
Selection Information Table
Value: 9
Public constructors
TableRequest
TableRequest(
requestId: Int,
option: Int,
tableId: Int,
tableName: Int,
version: Int)
Parameters | |
---|---|
option |
Int: Value is android.media.tv.BroadcastInfoRequest#REQUEST_OPTION_REPEAT , android.media.tv.BroadcastInfoRequest#REQUEST_OPTION_AUTO_UPDATE , android.media.tv.BroadcastInfoRequest.REQUEST_OPTION_ONEWAY, or android.media.tv.BroadcastInfoRequest.REQUEST_OPTION_ONESHOT |
tableName |
Int: Value is android.media.tv.TableRequest#TABLE_NAME_PAT , android.media.tv.TableRequest#TABLE_NAME_PMT , android.media.tv.TableRequest#TABLE_NAME_CAT , android.media.tv.TableRequest#TABLE_NAME_NIT , android.media.tv.TableRequest#TABLE_NAME_BAT , android.media.tv.TableRequest#TABLE_NAME_SDT , android.media.tv.TableRequest#TABLE_NAME_EIT , android.media.tv.TableRequest#TABLE_NAME_TDT , android.media.tv.TableRequest#TABLE_NAME_TOT , or android.media.tv.TableRequest#TABLE_NAME_SIT |
Public methods
describeContents
fun describeContents(): Int
Return | |
---|---|
Int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR |
getTableName
fun getTableName(): Int
Gets the name of requested table.
getVersion
fun getVersion(): Int
Gets the version number of requested table. If it is null, value will be -1.
The consistency of version numbers between request and response depends on BroadcastInfoRequest#getOption()
. If the request has RequestOption value REQUEST_OPTION_AUTO_UPDATE, then the response may be set to the latest version which may be different from the version of the request. Otherwise, response with a different version from its request will be considered invalid.
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
Parameters | |
---|---|
dest |
Parcel: This value cannot be null . |
flags |
Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |