CommandResponse
public
final
class
CommandResponse
extends BroadcastInfoResponse
implements
Parcelable
java.lang.Object | ||
↳ | android.media.tv.BroadcastInfoResponse | |
↳ | android.media.tv.CommandResponse |
A response for command from broadcast signal.
Summary
Constants | |
---|---|
String |
RESPONSE_TYPE_JSON
|
String |
RESPONSE_TYPE_XML
|
Inherited constants |
---|
Fields | |
---|---|
public
static
final
Creator<CommandResponse> |
CREATOR
|
Inherited fields |
---|
Public constructors | |
---|---|
CommandResponse(int requestId, int sequence, int responseResult, String response, String responseType)
|
Public methods | |
---|---|
int
|
describeContents()
Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. |
String
|
getResponse()
Gets the response of the command. |
String
|
getResponseType()
Gets the type of the command response. |
void
|
writeToParcel(Parcel dest, int flags)
Flatten this object in to a Parcel. |
Inherited methods | |
---|---|
Constants
RESPONSE_TYPE_JSON
public static final String RESPONSE_TYPE_JSON
Constant Value: "json"
RESPONSE_TYPE_XML
public static final String RESPONSE_TYPE_XML
Constant Value: "xml"
Fields
Public constructors
CommandResponse
public CommandResponse (int requestId, int sequence, int responseResult, String response, String responseType)
Parameters | |
---|---|
requestId |
int |
sequence |
int |
responseResult |
int : Value is BroadcastInfoResponse.RESPONSE_RESULT_ERROR , BroadcastInfoResponse.RESPONSE_RESULT_OK , or BroadcastInfoResponse.RESPONSE_RESULT_CANCEL |
response |
String : This value may be null . |
responseType |
String : This value cannot be null . |
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 |
getResponse
public String getResponse ()
Gets the response of the command. It could be serialized from some formats, such as JSON, XML, etc.
Returns | |
---|---|
String |
This value may be null . |
getResponseType
public String getResponseType ()
Gets the type of the command response. It could be either JSON or XML.
Returns | |
---|---|
String |
This value cannot be null . |
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 |