Last Updated : 30 Sep, 2018
The headMap() method of
SortedMap interface in Javais used to return a view of the portion of this map whose keys are strictly less than toKey.
: The map returned by this method will throw an IllegalArgumentException if any attempt is made to insert a key outside its range.
Syntax:
SortedMap<K, V> headMap(K toKey)
Where, K is the type of key maintained by this Set and V is the type of values associated with the Key.
Parameters: This function accepts a single parameter
toKeywhich represents high endpoint (exclusive) of the keys in the returned map.
Return Value: It returns a view of the portion of this map whose keys are strictly less than toKey.
Exception:
Below programs illustrate the above method:
Program 1:
Java
// A Java program to demonstrate
// working of SortedSet
import java.util.*;
public class Main {
public static void main(String[] args)
{
// Create a TreeSet and inserting elements
SortedMap<Integer, String> mp = new TreeMap<>();
// Adding Element to SortedSet
mp.put(1, "One");
mp.put(2, "Two");
mp.put(3, "Three");
mp.put(4, "Four");
mp.put(5, "Five");
// Returning the map with key less than 3
System.out.print("Last Key in the map is : "
+ mp.headMap(3));
}
}
Output:
Last Key in the map is : {1=One, 2=Two}Program 2
:
Java
// A Java program to demonstrate
// working of SortedSet
import java.util.*;
public class Main {
public static void main(String[] args)
{
// Create a TreeSet and inserting elements
SortedMap<String, String> mp = new TreeMap<>();
// Adding Element to SortedSet
mp.put("One", "Geeks");
mp.put("Two", "For");
mp.put("Three", "Geeks");
mp.put("Four", "Code");
mp.put("Five", "It");
// Returning map with key less than H
System.out.print("Last Key in the map is : "
+ mp.headMap("H"));
}
}
Output:
Last Key in the map is : {Five=It, Four=Code}Reference
:
https://docs.oracle.com/javase/10/docs/api/java/util/SortedMap.html#headMap(K)RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4