IMap.GetOrDefault(Object, 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 the value to which the specified key is mapped, or
defaultValue
if this map contains no mapping for the key.
[Android.Runtime.Register("getOrDefault", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;", "GetGetOrDefault_Ljava_lang_Object_Ljava_lang_Object_Handler:Java.Util.IMap, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)]
public virtual Java.Lang.Object? GetOrDefault (Java.Lang.Object? key, Java.Lang.Object? defaultValue);
[<Android.Runtime.Register("getOrDefault", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;", "GetGetOrDefault_Ljava_lang_Object_Ljava_lang_Object_Handler:Java.Util.IMap, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)>]
abstract member GetOrDefault : Java.Lang.Object * Java.Lang.Object -> Java.Lang.Object
override this.GetOrDefault : Java.Lang.Object * Java.Lang.Object -> Java.Lang.Object
Parameters
- key
- Object
the key whose associated value is to be returned
- defaultValue
- Object
the default mapping of the key
Returns
the value to which the specified key is mapped, or
defaultValue
if this map contains no mapping for the key
- Attributes
Remarks
Returns the value to which the specified key is mapped, or defaultValue
if this map contains no mapping for the key.
Added in 1.8.
Java documentation for java.util.Map.getOrDefault(java.lang.Object, V)
.
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.