TableRequest
public final class TableRequest
extends BroadcastInfoRequest implements Parcelable
| java.lang.Object | ||
| ↳ | android.media.tv.BroadcastInfoRequest | |
| ↳ | android.media.tv.TableRequest | |
A request for Table from broadcast signal.
Summary
Constants | |
|---|---|
int | TABLE_NAME_BAT Bouquet Association Table |
int | TABLE_NAME_CAT Conditional Access Table |
int | TABLE_NAME_EIT Event Information Table |
int | TABLE_NAME_NIT Network Information Table |
int | TABLE_NAME_PAT Program Association Table |
int | TABLE_NAME_PMT Program Mapping Table |
int | TABLE_NAME_SDT Service Description Table |
int | TABLE_NAME_SIT Selection Information Table |
int | TABLE_NAME_TDT Time and Date Table |
int | TABLE_NAME_TOT Time Offset Table |
Inherited constants |
|---|
Fields | |
|---|---|
public static final Creator<TableRequest> | CREATOR
|
Inherited fields |
|---|
Public constructors | |
|---|---|
TableRequest(int requestId, int option, int tableId, int tableName, int version) | |
Public methods | |
|---|---|
int | describeContents() Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. |
int | getTableId() Gets the ID of requested table. |
int | getTableName() Gets the name of requested table. |
int | getVersion() Gets the version number of requested table. |
void | writeToParcel(Parcel dest, int flags) Flatten this object in to a Parcel. |
Inherited methods | |
|---|---|
Constants
TABLE_NAME_BAT
public static final int TABLE_NAME_BAT
Bouquet Association Table
Constant Value: 4 (0x00000004)
TABLE_NAME_CAT
public static final int TABLE_NAME_CAT
Conditional Access Table
Constant Value: 2 (0x00000002)
TABLE_NAME_EIT
public static final int TABLE_NAME_EIT
Event Information Table
Constant Value: 6 (0x00000006)
TABLE_NAME_NIT
public static final int TABLE_NAME_NIT
Network Information Table
Constant Value: 3 (0x00000003)
TABLE_NAME_PAT
public static final int TABLE_NAME_PAT
Program Association Table
Constant Value: 0 (0x00000000)
TABLE_NAME_PMT
public static final int TABLE_NAME_PMT
Program Mapping Table
Constant Value: 1 (0x00000001)
TABLE_NAME_SDT
public static final int TABLE_NAME_SDT
Service Description Table
Constant Value: 5 (0x00000005)
TABLE_NAME_SIT
public static final int TABLE_NAME_SIT
Selection Information Table
Constant Value: 9 (0x00000009)
TABLE_NAME_TDT
public static final int TABLE_NAME_TDT
Time and Date Table
Constant Value: 7 (0x00000007)
TABLE_NAME_TOT
public static final int TABLE_NAME_TOT
Time Offset Table
Constant Value: 8 (0x00000008)
Fields
Public constructors
TableRequest
public TableRequest (int requestId, int option, int tableId, int tableName, int version)
| Parameters | |
|---|---|
requestId | int |
option | int: Value is BroadcastInfoRequest.REQUEST_OPTION_REPEAT, BroadcastInfoRequest.REQUEST_OPTION_AUTO_UPDATE, BroadcastInfoRequest.REQUEST_OPTION_ONEWAY, or BroadcastInfoRequest.REQUEST_OPTION_ONESHOT |
tableId | int |
tableName | int: Value is TABLE_NAME_PAT, TABLE_NAME_PMT, TABLE_NAME_CAT, TABLE_NAME_NIT, TABLE_NAME_BAT, TABLE_NAME_SDT, TABLE_NAME_EIT, TABLE_NAME_TDT, TABLE_NAME_TOT, or TABLE_NAME_SIT |
version | int |
Public methods
describeContents
public int describeContents ()
Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. For example, if the object will include a file descriptor in the output of writeToParcel(android.os.Parcel, int), the return value of this method must include the CONTENTS_FILE_DESCRIPTOR bit.
| Returns | |
|---|---|
int | a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or CONTENTS_FILE_DESCRIPTOR |
getTableId
public int getTableId ()
Gets the ID of requested table.
| Returns | |
|---|---|
int | |
getTableName
public int getTableName ()
Gets the name of requested table.
| Returns | |
|---|---|
int | Value is TABLE_NAME_PAT, TABLE_NAME_PMT, TABLE_NAME_CAT, TABLE_NAME_NIT, TABLE_NAME_BAT, TABLE_NAME_SDT, TABLE_NAME_EIT, TABLE_NAME_TDT, TABLE_NAME_TOT, or TABLE_NAME_SIT |
getVersion
public int getVersion ()
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.
| Returns | |
|---|---|
int | |
writeToParcel
public void writeToParcel (Parcel dest, int flags)
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.PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of Parcelable.PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |