Sprache

ConcurrentSkipListMap.LowerEntry(Object) Method

Definition

Returns a key-value mapping associated with the greatest key strictly less than the given key, or null if there is no such key.

[Android.Runtime.Register("lowerEntry", "(Ljava/lang/Object;)Ljava/util/Map$Entry;", "GetLowerEntry_Ljava_lang_Object_Handler")]
public virtual Java.Util.IMapEntry? LowerEntry(Java.Lang.Object? key);
[<Android.Runtime.Register("lowerEntry", "(Ljava/lang/Object;)Ljava/util/Map$Entry;", "GetLowerEntry_Ljava_lang_Object_Handler")>]
abstract member LowerEntry : Java.Lang.Object -> Java.Util.IMapEntry
override this.LowerEntry : Java.Lang.Object -> Java.Util.IMapEntry

Parameters

key
Object

the key

Returns

an entry with the greatest key less than key, or null if there is no such key

Attributes

Remarks

Returns a key-value mapping associated with the greatest key strictly less than the given key, or null if there is no such key. The returned entry does not support the Entry.setValue method.

Java reference for java.util.concurrent.ConcurrentSkipListMap.lowerEntry.

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