The floor() method of
NavigableSet interface in Java is used to return the greatest element in this set less than or equal to the given element, or null if there is no such element exists in the set.
Syntax:
E floor(E ele)
Where, E is the type of elements maintained by this Set container.
Parameters: This function accepts a parameter
ele which refers to type of element maintained by this Set container.
Return Value: It returns the greatest element in this set less than or equal to the given element, or null if there is no such element.
Below programs illustrate the ceiling() method in Java:
Program 1: NavigableSet with integer elements.
Output:
Greatest element less than or equal to 4 is: 4
Program 2: NavigableSet with string elements.