- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check whether a NavigableMap empty or not in Java
The isEmpty() method is used in Java to check whether a NavigableMap is empty or not.
First, create a NavigableMap and add elements to it −
NavigableMap<Integer, String> n = new TreeMap<Integer, String>(); n.put(5, "Tom"); n.put(9, "John"); n.put(14, "Jamie"); n.put(1, "Tim"); n.put(4, "Jackie"); n.put(15, "Kurt"); n.put(19, "Tiger"); n.put(24, "Jacob");
Now, check whether the Map is empty or not −
System.out.println("Map is empty? " + n.isEmpty());
The following is an example to implement isEmpty() method and check whether the Map is empty −
Example
import java.util.*; public class Demo { public static void main(String[] args) { NavigableMap<Integer, String> n = new TreeMap<Integer, String>(); n.put(5, "Tom"); n.put(9, "John"); n.put(14, "Jamie"); n.put(1, "Tim"); n.put(4, "Jackie"); n.put(15, "Kurt"); n.put(19, "Tiger"); n.put(24, "Jacob"); System.out.println("NavigableMap elements = "+n); System.out.println("Size = "+n.size()); System.out.println("Map is empty? " + n.isEmpty()); // remove all elements n.clear(); System.out.println("
Updated NavigableMap elements = "+n); System.out.println("Size = "+n.size()); System.out.println("Map is empty? " + n.isEmpty()); } }
Output
NavigableMap elements = {1=Tim, 4=Jackie, 5=Tom, 9=John, 14=Jamie, 15=Kurt, 19=Tiger, 24=Jacob} Size = 8 Map is empty? false Updated NavigableMap elements = {} Size = 0 Map is empty? True
- Related Articles
- Check whether IdentityHashMap empty or not in Java?
- Check whether a Stack is empty or not in Java
- Check whether a HashSet is empty or not in Java
- C# program to check whether a list is empty or not
- Python program to check whether a list is empty or not?
- Check whether a character is Lowercase or not in Java
- Check whether a character is Uppercase or not in Java
- Java Program to check if a string is empty or not
- Check whether a field is empty or null in MySQL?
- Java Program to check whether a file exists or not
- Check Whether a Number is a Coprime Number or Not in Java
- Check whether the file is hidden or not in Java
- Check whether the entered value is a digit or not in Java
- Check whether the entered value is a letter or not in Java
- Check Whether a Number is an Autobiographical Number or Not in JAVA

Advertisements