Added in API level 36

SignalingDataResponse


class SignalingDataResponse : BroadcastInfoResponse, Parcelable
kotlin.Any
   ↳ android.media.tv.BroadcastInfoResponse
   ↳ android.media.tv.SignalingDataResponse

A response for the signaling data from the broadcast signal.

Summary

Inherited constants
Public constructors
SignalingDataResponse(requestId: Int, sequence: Int, responseResult: Int, signalingDataTypes: MutableList<String!>, signalingDataInfoList: MutableList<SignalingDataInfo!>)

Public methods
Int

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

MutableList<SignalingDataInfo!>

Gets a list of SignalingDataInfo contained in this response.

MutableList<String!>

Gets a list of types of metadata that are contained in this response.

Unit
writeToParcel(dest: Parcel, flags: Int)

Flatten this object in to a Parcel.

Inherited functions
Properties
static Parcelable.Creator<SignalingDataResponse!>

Public constructors

SignalingDataResponse

Added in API level 36
SignalingDataResponse(
    requestId: Int,
    sequence: Int,
    responseResult: Int,
    signalingDataTypes: MutableList<String!>,
    signalingDataInfoList: MutableList<SignalingDataInfo!>)
Parameters
responseResult Int: Value is one of the following:
signalingDataTypes MutableList<String!>: This value cannot be null.
signalingDataInfoList MutableList<SignalingDataInfo!>: This value cannot be null.

Public methods

describeContents

Added in API level 36
fun describeContents(): Int

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.

Return
Int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.
Value is either 0 or

getSignalingDataInfoList

Added in API level 36
fun getSignalingDataInfoList(): MutableList<SignalingDataInfo!>

Gets a list of SignalingDataInfo contained in this response.

Return
MutableList<SignalingDataInfo!> A list of SignalingDataInfo contained in this response.
This value cannot be null.

getSignalingDataTypes

Added in API level 36
fun getSignalingDataTypes(): MutableList<String!>

Gets a list of types of metadata that are contained in this response.

This list correlates to all the available types that can be found within getSignalingDataInfoList(). This list is determined by the types specified in SignalingDataRequest.getSignalingDataTypes().

A list of types available are defined in SignalingDataRequest. For more information about these types, see A/344:2023-5 9.2.10 - Query Signaling Data API.

Return
MutableList<String!> A list of types of metadata that are contained in this response.
This value cannot be null.

writeToParcel

Added in API level 36
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 the following:

Properties

CREATOR

Added in API level 36
static val CREATOR: Parcelable.Creator<SignalingDataResponse!>