Added in API level 33

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
TableRequest(requestId: Int, option: Int, tableId: Int, tableName: Int, version: Int)

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

Added in API level 34
static val TABLE_NAME_BAT: Int

Bouquet Association Table

Value: 4

TABLE_NAME_CAT

Added in API level 34
static val TABLE_NAME_CAT: Int

Conditional Access Table

Value: 2

TABLE_NAME_EIT

Added in API level 34
static val TABLE_NAME_EIT: Int

Event Information Table

Value: 6

TABLE_NAME_NIT

Added in API level 34
static val TABLE_NAME_NIT: Int

Network Information Table

Value: 3

TABLE_NAME_PAT

Added in API level 33
static val TABLE_NAME_PAT: Int

Program Association Table

Value: 0

TABLE_NAME_PMT

Added in API level 33
static val TABLE_NAME_PMT: Int

Program Mapping Table

Value: 1

TABLE_NAME_SDT

Added in API level 34
static val TABLE_NAME_SDT: Int

Service Description Table

Value: 5

TABLE_NAME_SIT

Added in API level 34
static val TABLE_NAME_SIT: Int

Selection Information Table

Value: 9

TABLE_NAME_TDT

Added in API level 34
static val TABLE_NAME_TDT: Int

Time and Date Table

Value: 7

TABLE_NAME_TOT

Added in API level 34
static val TABLE_NAME_TOT: Int

Time Offset Table

Value: 8

Public constructors

Public methods

describeContents

Added in API level 33
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

getTableId

Added in API level 33
fun getTableId(): Int

Gets the ID of requested table.

getVersion

Added in API level 33
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

Added in API level 33
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

Properties

CREATOR

Added in API level 33
static val CREATOR: Parcelable.Creator<TableRequest!>