ISortedMap.SubMap(Object, Object) Method

Definition

Returns a view of the portion of this map whose keys range from fromKey, inclusive, to toKey, exclusive.

[Android.Runtime.Register("subMap", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;", "GetSubMap_Ljava_lang_Object_Ljava_lang_Object_Handler:Java.Util.ISortedMapInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public System.Collections.IDictionary SubMap (Java.Lang.Object? fromKey, Java.Lang.Object? toKey);
[<Android.Runtime.Register("subMap", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;", "GetSubMap_Ljava_lang_Object_Ljava_lang_Object_Handler:Java.Util.ISortedMapInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member SubMap : Java.Lang.Object * Java.Lang.Object -> System.Collections.IDictionary

Parameters

fromKey
Object

low endpoint (inclusive) of the keys in the returned map

toKey
Object

high endpoint (exclusive) of the keys in the returned map

Returns

a view of the portion of this map whose keys range from fromKey, inclusive, to toKey, exclusive

Attributes

Remarks

Returns a view of the portion of this map whose keys range from fromKey, inclusive, to toKey, exclusive. (If fromKey and toKey are equal, the returned map is empty.) The returned map is backed by this map, so changes in the returned map are reflected in this map, and vice-versa. The returned map supports all optional map operations that this map supports.

The returned map will throw an IllegalArgumentException on an attempt to insert a key outside its range.

Java documentation for java.util.SortedMap.subMap(K, K).

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