public class IccOpenLogicalChannelResponse
extends Object
implements Parcelable
java.lang.Object | |
↳ | android.telephony.IccOpenLogicalChannelResponse |
响应 iccOpenLogicalChannel(String)
命令。
Constants |
|
---|---|
int |
INVALID_CHANNEL 表示无效的频道。 |
int |
STATUS_MISSING_RESOURCE |
int |
STATUS_NO_ERROR 打开通道命令返回可能的状态值。 |
int |
STATUS_NO_SUCH_ELEMENT |
int |
STATUS_UNKNOWN_ERROR |
Inherited constants |
---|
From interface android.os.Parcelable
|
Fields |
|
---|---|
public static final Creator<IccOpenLogicalChannelResponse> |
CREATOR |
Public methods |
|
---|---|
int |
describeContents() 描述此Parcelable实例的封送表示中包含的特殊对象的种类。 |
int |
getChannel() |
byte[] |
getSelectResponse() |
int |
getStatus() |
String |
toString() 返回对象的字符串表示形式。 |
void |
writeToParcel(Parcel out, int flags) 将此对象平铺到一个包裹中。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
|
From interface android.os.Parcelable
|
int STATUS_NO_ERROR
打开通道命令返回可能的状态值。 STATUS_NO_ERROR:打开通道命令成功返回。 STATUS_MISSING_RESOURCE:没有可用的逻辑信道。 STATUS_NO_SUCH_ELEMENT:在UICC上未找到AID。 STATUS_UNKNOWN_ERROR:打开通道命令中的未知错误。
常数值:1(0x00000001)
int describeContents ()
描述此Parcelable实例的封送表示中包含的特殊对象的种类。 例如,如果对象将在writeToParcel(Parcel, int)
的输出中包含writeToParcel(Parcel, int)
,则此方法的返回值必须包含CONTENTS_FILE_DESCRIPTOR
位。
Returns | |
---|---|
int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. |
byte[] getSelectResponse ()
Returns | |
---|---|
byte[] |
the select response. |
String toString ()
返回对象的字符串表示形式。 一般来说, toString
方法返回一个“文本表示”该对象的字符串。 结果应该是一个简洁但内容丰富的表述,对于一个人来说很容易阅读。 建议所有子类重写此方法。
类Object
的toString
方法返回一个字符串,其中包含对象为实例的类的名称,符号字符“ @
”以及对象的哈希代码的无符号十六进制表示形式。 换句话说,这个方法返回一个字符串,其值等于:
getClass().getName() + '@' + Integer.toHexString(hashCode())
Returns | |
---|---|
String |
a string representation of the object. |
void writeToParcel (Parcel out, int flags)
将此对象平铺到一个包裹中。
Parameters | |
---|---|
out |
Parcel : The Parcel in which the object should be written. |
flags |
int : Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . |