Added in API level 33

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
equals(other: Any?)

Indicates whether some other object is "equal to" this one.

String?

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

Boolean

String

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

Added in API level 33
static val ICCID_REDACTED: String

A redacted String if caller does not have permission to read ICCID.

Value: "FFFFFFFFFFFFFFFFFFFF"

Public methods

describeContents

Added in API level 33
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

Added in API level 33
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 return true.
  • It is symmetric: for any non-null reference values x and y, x.equals(y) should return true if and only if y.equals(x) returns true.
  • It is transitive: for any non-null reference values x, y, and z, if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.
  • It is consistent: for any non-null reference values x and y, multiple invocations of x.equals(y) consistently return true or consistently return false, provided no information used in equals comparisons on the objects is modified.
  • For any non-null reference value x, x.equals(null) should return false.

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

Added in API level 33
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

Added in API level 33
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

Added in API level 33
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

hashCode

Added in API level 33
fun hashCode(): Int
Return
Int a hash code value for this object.

isActive

Added in API level 33
fun isActive(): Boolean
Return
Boolean true if port was tied to a modem stack.

toString

Added in API level 33
fun toString(): String

Returns a string representation of the object.

Return
String This value cannot be null.

writeToParcel

Added in API level 33
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

Properties

CREATOR

Added in API level 33
static val CREATOR: Parcelable.Creator<UiccPortInfo!>