Added in API level 28

SubscriptionPlan


class SubscriptionPlan : Parcelable
kotlin.Any
   ↳ android.telephony.SubscriptionPlan

Description of a billing relationship plan between a carrier and a specific subscriber. This information is used to present more useful UI to users, such as explaining how much mobile data they have remaining, and what will happen when they run out.

If specifying network types, the developer must supply at least one plan that applies to all network types (default), and all additional plans may not include a particular network type more than once. This is enforced by SubscriptionManager when setting the plans.

Plan selection will prefer plans that have specific network types defined over plans that apply to all network types.

Summary

Nested classes

Builder for a SubscriptionPlan.

Constants
static Long

Value indicating a number of bytes is unknown.

static Long

Value indicating a number of bytes is unlimited.

static Int

Indicates that the user will be billed for data usage beyond the limit.

static Int

Indicates that data access is disabled when the data limit is reached.

static Int

Indicates that data access is throttled to a slower speed when the limit is reached.

static Int

Indicates that the behavior for when a data limit is reached is unknown.

static Int

The subscription is active.

static Int

The subscription is inactive.

static Int

The subscription is suspended.

static Int

The subscription is in a trial period.

static Int

The subscription status is unknown.

static Long

Value indicating a timestamp is unknown.

Inherited constants
Public methods
MutableIterator<Range<ZonedDateTime!>!>!

Returns an iterator that provides the data usage billing cycles for this plan, based on its recurrence rule.

Int

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

Boolean
equals(other: Any?)

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

Int

Returns the behavior of data access when usage reaches the limit defined by getDataLimitBytes().

Long

Returns the data limit for the plan.

Long

Returns a snapshot of the mobile data usage, in bytes, as of the time reported by getDataUsageTime().

Long

Returns the time at which getDataUsageBytes() was measured, in milliseconds since the Unix epoch.

IntArray

Returns the network types that this plan applies to.

ZonedDateTime?

Returns the end date of this subscription plan.

Int

Returns the status of the subscription plan.

CharSequence?

Returns a brief, human-readable summary of the subscription plan.

CharSequence?

Returns a user-visible title for this plan.

Int

Returns a hash code value for the object.

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<SubscriptionPlan!>

Constants

BYTES_UNKNOWN

Added in API level 28
static val BYTES_UNKNOWN: Long

Value indicating a number of bytes is unknown.

This value is used when the carrier has not provided a specific data limit or usage value.

Value: -1L

BYTES_UNLIMITED

Added in API level 28
static val BYTES_UNLIMITED: Long

Value indicating a number of bytes is unlimited.

This value is used when the carrier has not specified a data limit.

Value: 9223372036854775807L

LIMIT_BEHAVIOR_BILLED

Added in API level 28
static val LIMIT_BEHAVIOR_BILLED: Int

Indicates that the user will be billed for data usage beyond the limit.

When the user exceeds their data limit, they will incur overage charges. Data access continues, but at an additional cost.

Value: 1

LIMIT_BEHAVIOR_DISABLED

Added in API level 28
static val LIMIT_BEHAVIOR_DISABLED: Int

Indicates that data access is disabled when the data limit is reached.

Once the user's data usage hits the defined limit, their mobile data connection will be turned off until the next billing cycle begins.

Value: 0

LIMIT_BEHAVIOR_THROTTLED

Added in API level 28
static val LIMIT_BEHAVIOR_THROTTLED: Int

Indicates that data access is throttled to a slower speed when the limit is reached.

After the user consumes their high-speed data allowance, the data connection remains active but is reduced to a lower bandwidth for the remainder of the billing cycle.

Value: 2

LIMIT_BEHAVIOR_UNKNOWN

Added in API level 28
static val LIMIT_BEHAVIOR_UNKNOWN: Int

Indicates that the behavior for when a data limit is reached is unknown.

This is the default value and should be used when the carrier has not specified what happens when the user's data usage exceeds the limit.

Value: -1

SUBSCRIPTION_STATUS_ACTIVE

Added in API level 36
static val SUBSCRIPTION_STATUS_ACTIVE: Int

The subscription is active.

This indicates that the subscription is in good standing and all services are available to the user.

Value: 1

SUBSCRIPTION_STATUS_INACTIVE

Added in API level 36
static val SUBSCRIPTION_STATUS_INACTIVE: Int

The subscription is inactive.

This status means the subscription is not currently in service. This could be because it has been canceled, has expired, or has not yet been activated.

Value: 2

SUBSCRIPTION_STATUS_SUSPENDED

Added in API level 36
static val SUBSCRIPTION_STATUS_SUSPENDED: Int

The subscription is suspended.

A suspended subscription has been temporarily disabled. This can occur due to billing issues, a user's request, or a violation of the carrier's terms of service. Services are unavailable, but the subscription can typically be reactivated.

Value: 4

SUBSCRIPTION_STATUS_TRIAL

Added in API level 36
static val SUBSCRIPTION_STATUS_TRIAL: Int

The subscription is in a trial period.

This indicates that the user is on a promotional or trial plan, which may have different features or limitations than a standard subscription. After the trial period ends, the status will typically change to active or inactive.

Value: 3

SUBSCRIPTION_STATUS_UNKNOWN

Added in API level 36
static val SUBSCRIPTION_STATUS_UNKNOWN: Int

The subscription status is unknown.

This is the default value, used when the carrier is unable to provide the current status of the subscription.

Value: 0

TIME_UNKNOWN

Added in API level 28
static val TIME_UNKNOWN: Long

Value indicating a timestamp is unknown.

Value: -1L

Public methods

cycleIterator

Added in API level 28
fun cycleIterator(): MutableIterator<Range<ZonedDateTime!>!>!

Returns an iterator that provides the data usage billing cycles for this plan, based on its recurrence rule.

The iterator starts from the cycle that is currently active and walks backwards through time. Each cycle is represented as a Range of ZonedDateTime objects, indicating the start and end of that period.

Return
MutableIterator<Range<ZonedDateTime!>!>! An iterator for the plan's billing cycles.

describeContents

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

equals

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

getDataLimitBehavior

Added in API level 28
fun getDataLimitBehavior(): Int

Returns the behavior of data access when usage reaches the limit defined by getDataLimitBytes().

This defines what happens to the user's data connection once they have consumed the amount of data specified in the data limit. For example, the carrier might throttle the connection to a slower speed, disable it entirely, or start billing for overage.

Return
Int The data limit behavior, which will be one of LIMIT_BEHAVIOR_UNKNOWN, LIMIT_BEHAVIOR_DISABLED, LIMIT_BEHAVIOR_BILLED, or LIMIT_BEHAVIOR_THROTTLED.
Value is one of the following:

getDataLimitBytes

Added in API level 28
fun getDataLimitBytes(): Long

Returns the data limit for the plan.

This is the usage threshold, in bytes, at which data access changes according to the behavior defined by getDataLimitBehavior(). For example, once data usage reaches this limit, the connection might be throttled or disabled.
Value is a non-negative number of bytes.

Return
Long The data limit in bytes. This may be BYTES_UNKNOWN if the limit is not available, or BYTES_UNLIMITED if there is no limit.
Value is a non-negative number of bytes.

getDataUsageBytes

Added in API level 28
fun getDataUsageBytes(): Long

Returns a snapshot of the mobile data usage, in bytes, as of the time reported by getDataUsageTime().

The usage reported here corresponds to the data consumption within the current billing cycle defined by #getCycleRule(). If the plan specifies different limits for various network types, this value represents the total usage across all applicable networks.
Value is a non-negative number of bytes.

Return
Long The data usage in bytes, or BYTES_UNKNOWN if unavailable.
Value is a non-negative number of bytes.

getDataUsageTime

Added in API level 28
fun getDataUsageTime(): Long

Returns the time at which getDataUsageBytes() was measured, in milliseconds since the Unix epoch.

This timestamp indicates how recent the data usage information is. It allows applications to decide whether the usage value is current enough for their needs.
Value is a non-negative timestamp measured as the number of milliseconds since 1970-01-01T00:00:00Z.

Return
Long The time of the data usage snapshot as a Unix epoch timestamp, or TIME_UNKNOWN if unavailable.
Value is a non-negative timestamp measured as the number of milliseconds since 1970-01-01T00:00:00Z.

getNetworkTypes

Added in API level 30
fun getNetworkTypes(): IntArray

Returns the network types that this plan applies to.

A "default" plan, which applies to any network type not explicitly covered by another plan, will include all possible network types in the returned array. Each subscription should have at most one default plan.

A RAT-specific plan will return an array containing only the network types it applies to, for example, TelephonyManager.NETWORK_TYPE_LTE.

Return
IntArray A new copy of the array of network types this plan applies to. The values will be constants from TelephonyManager, such as TelephonyManager.NETWORK_TYPE_LTE.
This value cannot be null.
Value is one of the following:

See Also

    getPlanEndDate

    Added in API level 36
    fun getPlanEndDate(): ZonedDateTime?

    Returns the end date of this subscription plan.

    This indicates the specific date and time when the plan is no longer valid. For recurring plans that do not have a defined end, this will be null.

    Return
    ZonedDateTime? The plan's end date as a ZonedDateTime, or null if unavailable.

    getSubscriptionStatus

    Added in API level 36
    fun getSubscriptionStatus(): Int

    Returns the status of the subscription plan.

    This indicates the current state of the subscription, such as whether it is active, suspended, or in a trial period. This status provides context on the plan's availability and can be used to inform the user about their subscription's lifecycle.

    Return
    Int The subscription status, which is one of the SUBSCRIPTION_STATUS_* constants, or SUBSCRIPTION_STATUS_UNKNOWN if not available.
    Value is one of the following:

    getSummary

    Added in API level 28
    fun getSummary(): CharSequence?

    Returns a brief, human-readable summary of the subscription plan.

    This could include details about the plan's features, such as "10GB of high-speed data" or "Unlimited talk and text". This summary is intended for display to the user.

    Return
    CharSequence? A short, user-friendly summary of the plan, or null if not specified.

    getTitle

    Added in API level 28
    fun getTitle(): CharSequence?

    Returns a user-visible title for this plan.

    This title is provided by the carrier to identify the subscription plan, for example, "Unlimited+" or "Family plan". It is intended for display to the user.

    Return
    CharSequence? The title of the plan, or null if not specified.

    hashCode

    Added in API level 28
    fun hashCode(): Int

    Returns a hash code value for the object. This method is supported for the benefit of hash tables such as those provided by java.util.HashMap.

    The general contract of hashCode is:

    • Whenever it is invoked on the same object more than once during an execution of a Java application, the hashCode method must consistently return the same integer, provided no information used in equals comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application.
    • If two objects are equal according to the equals method, then calling the hashCode method on each of the two objects must produce the same integer result.
    • It is not required that if two objects are unequal according to the equals method, then calling the hashCode method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables.
    Return
    Int a hash code value for this object.

    toString

    Added in API level 28
    fun toString(): String

    Returns a string representation of the object.

    Return
    String a string representation of the object.

    writeToParcel

    Added in API level 28
    fun writeToParcel(
        dest: Parcel,
        flags: Int
    ): Unit

    Flatten this object in to a Parcel.

    Parameters
    dest Parcel: The Parcel in which the object should be written.
    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:

    Properties

    CREATOR

    Added in API level 28
    static val CREATOR: Parcelable.Creator<SubscriptionPlan!>