Java Collection Tutorial - Java TreeMap.floorKey(K key)








Syntax

TreeMap.floorKey(K key) has the following syntax.

public K floorKey(K key)

Example

In the following code shows how to use TreeMap.floorKey(K key) method.

/*from www.  j  a  v  a2  s.c om*/
import java.util.TreeMap;

public class Main {
   public static void main(String[] args) {
      
      TreeMap<Integer, String>  treemap = new TreeMap<Integer, String> ();
      
      // populating tree map
      treemap.put(2, "two");
      treemap.put(1, "one");
      treemap.put(3, "three");
      treemap.put(6, "six");
      treemap.put(5, "from java2s.com");
      
      System.out.println("Checking greatest key less than or equal to 4");
      System.out.println("Value is: "+ treemap.floorKey(4));
   }    
}

The code above generates the following result.