ConcurrentSkipListMap.GetOrDefault(Object, Object) Method

Definition

Returns the value to which the specified key is mapped, or the given 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", 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", 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

defaultValue
Object

the value to return if this map contains no mapping for the given key

Returns

the mapping for the key, if present; else the defaultValue

Attributes

Remarks

Returns the value to which the specified key is mapped, or the given defaultValue if this map contains no mapping for the key.

Added in 1.8.

Java documentation for java.util.concurrent.ConcurrentSkipListMap.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.

Applies to