Collections.SortedMap.tailMap()

Signature

Object tailMap ( Object map, Object fromKey )

Domain

ACTION

Description

Returns a view of the portion of this map whose keys are greater than or equal to fromKey.

Parameters

NameTypeDescription
mapObjectInstance of SortedMap
fromKeyObjectLow endpoint (inclusive) of the keys in the returned map

Returns

TypeDescription
ObjectInstance of SortedSet, a view of the portion of this map whose keys are greater than or equal to fromKey

Cautions

none