UiccPortInfo
class UiccPortInfo : Parcelable
kotlin.Any | |
↳ | android.telephony.UiccPortInfo |
UiccPortInfo class represents information about a single port contained on UiccCardInfo
. Per GSMA SGP.22 V3.0, a port is a logical entity to which an active UICC profile can be bound on a UICC card. If UICC supports 2 ports, then the port index is numbered 0,1. Each port index is unique within an UICC, but not necessarily unique across UICC’s. For UICC's does not support MEP(Multi-enabled profile) android.content.pm.PackageManager#FEATURE_TELEPHONY_EUICC_MEP
, just return the default port index 0.
Summary
Constants | |
---|---|
static String |
A redacted String if caller does not have permission to read ICCID. |
Inherited constants | |
---|---|
Public methods | |
---|---|
Int | |
Boolean |
Indicates whether some other object is "equal to" this one. |
String? |
getIccId() Get the ICCID of the profile associated with this port. |
Int |
Gets logical slot index for the slot that the UICC is currently attached. |
Int |
The port index is an enumeration of the ports available on the UICC. |
Int |
hashCode() |
Boolean |
isActive() |
String |
toString() Returns a string representation of the object. |
Unit |
writeToParcel(dest: Parcel!, flags: Int) Flatten this object in to a Parcel. |
Properties | |
---|---|
static Parcelable.Creator<UiccPortInfo!> |
Constants
ICCID_REDACTED
static val ICCID_REDACTED: String
A redacted String if caller does not have permission to read ICCID.
Value: "FFFFFFFFFFFFFFFFFFFF"
Public methods
describeContents
fun describeContents(): Int
Return | |
---|---|
Int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR |
equals
fun equals(other: Any?): Boolean
Indicates whether some other object is "equal to" this one.
The equals
method implements an equivalence relation on non-null object references:
- It is reflexive: for any non-null reference value
x
,x.equals(x)
should returntrue
. - It is symmetric: for any non-null reference values
x
andy
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any non-null reference values
x
,y
, andz
, ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
. - It is consistent: for any non-null reference values
x
andy
, multiple invocations ofx.equals(y)
consistently returntrue
or consistently returnfalse
, provided no information used inequals
comparisons on the objects is modified. - For any non-null reference value
x
,x.equals(null)
should returnfalse
.
An equivalence relation partitions the elements it operates on into equivalence classes; all the members of an equivalence class are equal to each other. Members of an equivalence class are substitutable for each other, at least for some purposes.
Parameters | |
---|---|
obj |
This value may be null . |
Return | |
---|---|
Boolean |
true if this object is the same as the obj argument; false otherwise. |
getIccId
fun getIccId(): String?
Get the ICCID of the profile associated with this port. If this port is not isActive()
, returns null
. If the caller does not have access to the ICCID for this port, it will be redacted and ICCID_REDACTED
will be returned.
getLogicalSlotIndex
fun getLogicalSlotIndex(): Int
Gets logical slot index for the slot that the UICC is currently attached. Logical slot index or ID: unique index referring to a logical SIM slot. Logical slot IDs start at 0 and go up depending on the number of supported active slots on a device. For example, a dual-SIM device typically has slot 0 and slot 1. If a device has multiple physical slots but only supports one active slot, it will have only the logical slot ID 0.
Return | |
---|---|
Int |
the logical slot index for UICC port, if there is no logical slot index it returns SubscriptionManager#INVALID_SIM_SLOT_INDEX Value is 0 or greater |
getPortIndex
fun getPortIndex(): Int
The port index is an enumeration of the ports available on the UICC. Example: if eUICC1 supports 2 ports, then the port index is numbered 0,1. Each port index is unique within an UICC, but not necessarily unique across UICC’s. For UICC's does not support MEP(Multi-enabled profile), just return the default port index 0.
Return | |
---|---|
Int |
Value is 0 or greater |
isActive
fun isActive(): Boolean
Return | |
---|---|
Boolean |
true if port was tied to a modem stack. |
toString
fun toString(): String
Returns a string representation of the object.
Return | |
---|---|
String |
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 may 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 android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |