INavigableMap.SubMap 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.
Overloads
| SubMap(Object, Object) |
To be added |
| SubMap(Object, Boolean, Object, Boolean) |
Returns a view of the portion of this map whose keys range from
|
SubMap(Object, Object)
To be added
[Android.Runtime.Register("subMap", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;", "GetSubMap_Ljava_lang_Object_Ljava_lang_Object_Handler:Java.Util.INavigableMapInvoker, 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.INavigableMapInvoker, 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
- toKey
- Object
Returns
Implements
- Attributes
Remarks
To be added
Equivalent to subMap(fromKey, true, toKey, false).
Java documentation for java.util.NavigableMap.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
SubMap(Object, Boolean, Object, Boolean)
Returns a view of the portion of this map whose keys range from
fromKey to toKey.
[Android.Runtime.Register("subMap", "(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;", "GetSubMap_Ljava_lang_Object_ZLjava_lang_Object_ZHandler:Java.Util.INavigableMapInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Util.INavigableMap SubMap(Java.Lang.Object? fromKey, bool fromInclusive, Java.Lang.Object? toKey, bool toInclusive);
[<Android.Runtime.Register("subMap", "(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;", "GetSubMap_Ljava_lang_Object_ZLjava_lang_Object_ZHandler:Java.Util.INavigableMapInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member SubMap : Java.Lang.Object * bool * Java.Lang.Object * bool -> Java.Util.INavigableMap
Parameters
- fromKey
- Object
low endpoint of the keys in the returned map
- fromInclusive
- Boolean
true if the low endpoint
is to be included in the returned view
- toKey
- Object
high endpoint of the keys in the returned map
- toInclusive
- Boolean
true if the high endpoint
is to be included in the returned view
Returns
a view of the portion of this map whose keys range from
fromKey to toKey
- Attributes
Remarks
Returns a view of the portion of this map whose keys range from fromKey to toKey. If fromKey and toKey are equal, the returned map is empty unless fromInclusive and toInclusive are both true. 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 of its range, or to construct a submap either of whose endpoints lie outside its range.
Java documentation for java.util.NavigableMap.subMap(K, boolean, K, boolean).
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.