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: 4TABLE_NAME_CAT
static val TABLE_NAME_CAT: Int
Conditional Access Table
Value: 2TABLE_NAME_EIT
static val TABLE_NAME_EIT: Int
Event Information Table
Value: 6TABLE_NAME_NIT
static val TABLE_NAME_NIT: Int
Network Information Table
Value: 3TABLE_NAME_PAT
static val TABLE_NAME_PAT: Int
Program Association Table
Value: 0TABLE_NAME_SDT
static val TABLE_NAME_SDT: Int
Service Description Table
Value: 5TABLE_NAME_SIT
static val TABLE_NAME_SIT: Int
Selection Information Table
Value: 9Public constructors
TableRequest
TableRequest(
requestId: Int,
option: Int,
tableId: Int,
tableName: Int,
version: Int)
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 0orandroid.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 either0or a combination ofandroid.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES | 
