Stay organized with collections
Save and categorize content based on your preferences.
ImsRegistrationImplBase
public
class
ImsRegistrationImplBase
extends Object
Controls IMS registration for this ImsService and notifies the framework when the IMS
registration for this ImsService has changed status.
Note: There is no guarantee on the thread that the calls from the framework will be called on. It
is the implementors responsibility to handle moving the calls to a working thread if required.
Summary
Inherited methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait(long timeoutMillis, int nanos)
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted, or until a
certain amount of real time has elapsed.
|
final
void
|
wait(long timeoutMillis)
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted, or until a
certain amount of real time has elapsed.
|
final
void
|
wait()
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted.
|
|
Constants
REGISTRATION_TECH_3G
public static final int REGISTRATION_TECH_3G
This ImsService is registered to IMS via 3G.
Constant Value:
4
(0x00000004)
REGISTRATION_TECH_CROSS_SIM
public static final int REGISTRATION_TECH_CROSS_SIM
This ImsService is registered to IMS via internet over second subscription.
Constant Value:
2
(0x00000002)
REGISTRATION_TECH_IWLAN
public static final int REGISTRATION_TECH_IWLAN
This ImsService is registered to IMS via IWLAN.
Constant Value:
1
(0x00000001)
REGISTRATION_TECH_LTE
public static final int REGISTRATION_TECH_LTE
This ImsService is registered to IMS via LTE.
Constant Value:
0
(0x00000000)
REGISTRATION_TECH_NONE
public static final int REGISTRATION_TECH_NONE
No registration technology specified, used when we are not registered.
Constant Value:
-1
(0xffffffff)
REGISTRATION_TECH_NR
public static final int REGISTRATION_TECH_NR
This ImsService is registered to IMS via NR.
Constant Value:
3
(0x00000003)
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[null,null,["Last updated 2025-02-10 UTC."],[],[],null,["# ImsRegistrationImplBase\n\nAdded in [API level 33](/guide/topics/manifest/uses-sdk-element#ApiLevels) \nSummary: [Constants](#constants) \\| [Inherited Methods](#inhmethods) \n\nImsRegistrationImplBase\n=======================\n\n*** ** * ** ***\n\n[Kotlin](/reference/kotlin/android/telephony/ims/stub/ImsRegistrationImplBase \"View this page in Kotlin\") \\|Java\n\n\n`\npublic\n\n\nclass\nImsRegistrationImplBase\n`\n\n\n`\n\nextends `[Object](/reference/java/lang/Object)`\n\n\n`\n\n`\n\n\n`\n\n|---|----------------------------------------------------|\n| [java.lang.Object](/reference/java/lang/Object) ||\n| ↳ | android.telephony.ims.stub.ImsRegistrationImplBase |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nControls IMS registration for this ImsService and notifies the framework when the IMS\nregistration for this ImsService has changed status.\n\n\nNote: There is no guarantee on the thread that the calls from the framework will be called on. It\nis the implementors responsibility to handle moving the calls to a working thread if required.\n\nSummary\n-------\n\n| ### Constants ||\n|-------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `int` | [REGISTRATION_TECH_3G](/reference/android/telephony/ims/stub/ImsRegistrationImplBase#REGISTRATION_TECH_3G) This ImsService is registered to IMS via 3G. |\n| `int` | [REGISTRATION_TECH_CROSS_SIM](/reference/android/telephony/ims/stub/ImsRegistrationImplBase#REGISTRATION_TECH_CROSS_SIM) This ImsService is registered to IMS via internet over second subscription. |\n| `int` | [REGISTRATION_TECH_IWLAN](/reference/android/telephony/ims/stub/ImsRegistrationImplBase#REGISTRATION_TECH_IWLAN) This ImsService is registered to IMS via IWLAN. |\n| `int` | [REGISTRATION_TECH_LTE](/reference/android/telephony/ims/stub/ImsRegistrationImplBase#REGISTRATION_TECH_LTE) This ImsService is registered to IMS via LTE. |\n| `int` | [REGISTRATION_TECH_NONE](/reference/android/telephony/ims/stub/ImsRegistrationImplBase#REGISTRATION_TECH_NONE) No registration technology specified, used when we are not registered. |\n| `int` | [REGISTRATION_TECH_NR](/reference/android/telephony/ims/stub/ImsRegistrationImplBase#REGISTRATION_TECH_NR) This ImsService is registered to IMS via NR. |\n\n| ### Inherited methods |\n|-----------------------|---|\n| From class ` `[java.lang.Object](/reference/java/lang/Object)` ` |---------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ` `[Object](/reference/java/lang/Object) | ` `[clone](/reference/java/lang/Object#clone())`() ` Creates and returns a copy of this object. | | ` boolean` | ` `[equals](/reference/java/lang/Object#equals(java.lang.Object))`(`[Object](/reference/java/lang/Object)` obj) ` Indicates whether some other object is \"equal to\" this one. | | ` void` | ` `[finalize](/reference/java/lang/Object#finalize())`() ` Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. | | ` final `[Class](/reference/java/lang/Class)`\u003c?\u003e` | ` `[getClass](/reference/java/lang/Object#getClass())`() ` Returns the runtime class of this `Object`. | | ` int` | ` `[hashCode](/reference/java/lang/Object#hashCode())`() ` Returns a hash code value for the object. | | ` final void` | ` `[notify](/reference/java/lang/Object#notify())`() ` Wakes up a single thread that is waiting on this object's monitor. | | ` final void` | ` `[notifyAll](/reference/java/lang/Object#notifyAll())`() ` Wakes up all threads that are waiting on this object's monitor. | | ` `[String](/reference/java/lang/String) | ` `[toString](/reference/java/lang/Object#toString())`() ` Returns a string representation of the object. | | ` final void` | ` `[wait](/reference/java/lang/Object#wait(long,%20int))`(long timeoutMillis, int nanos) ` Causes the current thread to wait until it is awakened, typically by being *notified* or *interrupted*, or until a certain amount of real time has elapsed. | | ` final void` | ` `[wait](/reference/java/lang/Object#wait(long))`(long timeoutMillis) ` Causes the current thread to wait until it is awakened, typically by being *notified* or *interrupted*, or until a certain amount of real time has elapsed. | | ` final void` | ` `[wait](/reference/java/lang/Object#wait())`() ` Causes the current thread to wait until it is awakened, typically by being *notified* or *interrupted*. | ||\n\nConstants\n---------\n\n### REGISTRATION_TECH_3G\n\nAdded in [API level 34](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final int REGISTRATION_TECH_3G\n```\n\nThis ImsService is registered to IMS via 3G.\n\n\u003cbr /\u003e\n\nConstant Value:\n\n4\n(0x00000004)\n\n\n### REGISTRATION_TECH_CROSS_SIM\n\nAdded in [API level 33](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final int REGISTRATION_TECH_CROSS_SIM\n```\n\nThis ImsService is registered to IMS via internet over second subscription.\n\n\u003cbr /\u003e\n\nConstant Value:\n\n2\n(0x00000002)\n\n\n### REGISTRATION_TECH_IWLAN\n\nAdded in [API level 33](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final int REGISTRATION_TECH_IWLAN\n```\n\nThis ImsService is registered to IMS via IWLAN.\n\n\u003cbr /\u003e\n\nConstant Value:\n\n1\n(0x00000001)\n\n\n### REGISTRATION_TECH_LTE\n\nAdded in [API level 33](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final int REGISTRATION_TECH_LTE\n```\n\nThis ImsService is registered to IMS via LTE.\n\n\u003cbr /\u003e\n\nConstant Value:\n\n0\n(0x00000000)\n\n\n### REGISTRATION_TECH_NONE\n\nAdded in [API level 33](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final int REGISTRATION_TECH_NONE\n```\n\nNo registration technology specified, used when we are not registered.\n\n\u003cbr /\u003e\n\nConstant Value:\n\n-1\n(0xffffffff)\n\n\n### REGISTRATION_TECH_NR\n\nAdded in [API level 33](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final int REGISTRATION_TECH_NR\n```\n\nThis ImsService is registered to IMS via NR.\n\n\u003cbr /\u003e\n\nConstant Value:\n\n3\n(0x00000003)"]]