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 |
| 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
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
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
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
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
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:
|