ImsRegistrationAttributes
class ImsRegistrationAttributes : Parcelable
Contains the attributes associated with the current IMS registration.
Summary
Constants |
static Int |
Attribute to specify if an EPDG tunnel is setup over the cellular internet APN.
|
Inherited constants |
From class Parcelable
Int |
CONTENTS_FILE_DESCRIPTOR
Descriptor bit used with describeContents() : indicates that the Parcelable object's flattened representation includes a file descriptor.
|
Int |
PARCELABLE_WRITE_RETURN_VALUE
Flag for use with writeToParcel : the object being written is a return value, that is the result of a function such as "Parcelable someFunction() ", "void someFunction(out Parcelable) ", or "void someFunction(inout Parcelable) ". Some implementations may want to release resources at this point.
|
|
Constants
ATTR_EPDG_OVER_CELL_INTERNET
static val ATTR_EPDG_OVER_CELL_INTERNET: Int
Attribute to specify if an EPDG tunnel is setup over the cellular internet APN.
If IMS is registered through an EPDG tunnel is setup over the cellular internet APN then this bit will be set. If IMS is registered through the IMS APN, then this bit will not be set.
Value: 1
Public methods
describeContents
fun describeContents(): Int
equals
fun equals(other: Any?): Boolean
Parameters |
obj |
the reference object with which to compare. |
Return |
Boolean |
true if this object is the same as the obj argument; false otherwise. |
getAttributeFlags
fun getAttributeFlags(): Int
fun getFeatureTags(): MutableSet<String!>
Gets the Set of feature tags associated with the current IMS registration, if the IMS service supports supplying this information.
The format of the set of feature tags will be one feature tag key and value per entry and will potentially contain MMTEL and RCS feature tags, depending the configuration of the IMS service associated with the registration indications. Each feature tag will contain the feature tag name and string value (if applicable), even if they have the same feature tag name. For example, +g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.oma.cpm.msg, urn%3Aurn-7%3A3gpp-service.ims.icsi.oma.cpm.session", +g.gsma.callcomposer
will be split into three feature tag entries: {+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.oma.cpm.msg", +g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.oma.cpm.session", +g.gsma.callcomposer}
.
Return |
MutableSet<String!> |
The Set of feature tags associated with the current IMS registration. This value cannot be null . |
getSipDetails
fun getSipDetails(): SipDetails?
Return |
SipDetails? |
The SIP information associated with the IMS registration. This value may be null . |
getTransportType
fun getTransportType(): Int
hashCode
fun hashCode(): Int
Return |
Int |
a hash code value for this object. |
toString
fun toString(): String
Return |
String |
a string representation of the object. |
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
Properties