Java.Util.TreeMap.DescendingMap Method
Returns a reverse order view of the mappings contained in this map.

Syntax

[Android.Runtime.Register("descendingMap", "()Ljava/util/NavigableMap;", "GetDescendingMapHandler")]
public virtual INavigableMap DescendingMap ()

Returns

Documentation for this section has not yet been entered.

Remarks

Returns a reverse order view of the mappings contained in this map. The descending map is backed by this map, so changes to the map are reflected in the descending map, and vice-versa. If either map is modified while an iteration over a collection view of either map is in progress (except through the iterator's own remove operation), the results of the iteration are undefined.

The returned map has an ordering equivalent to Collections.reverseOrder(java.util.Comparator<T>)(comparator()). The expression m.descendingMap().descendingMap() returns a view of m essentially equivalent to m.

[Android Documentation]

Requirements

Namespace: Java.Util
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 9