LongSparseArray.IndexOfValue(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an index for which #valueAt
would return the
specified key, or a negative number if no keys map to the
specified value.
[Android.Runtime.Register("indexOfValue", "(Ljava/lang/Object;)I", "GetIndexOfValue_Ljava_lang_Object_Handler")]
public virtual int IndexOfValue (Java.Lang.Object? value);
[<Android.Runtime.Register("indexOfValue", "(Ljava/lang/Object;)I", "GetIndexOfValue_Ljava_lang_Object_Handler")>]
abstract member IndexOfValue : Java.Lang.Object -> int
override this.IndexOfValue : Java.Lang.Object -> int
Parameters
- value
- Object
Returns
- Attributes
Remarks
Returns an index for which #valueAt
would return the specified key, or a negative number if no keys map to the specified value. Beware that this is a linear search, unlike lookups by key, and that multiple keys can map to the same value and this will find only one of them.
Java documentation for android.util.LongSparseArray.indexOfValue(E)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.