- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Create NavigableMap in Java
Let us first create a NavigableMap
NavigableMap<String, Integer> n = new TreeMap<String, Integer>();
Now, let us add some elements
n.put("A", 888); n.put("B", 999); n.put("C", 444); n.put("D", 555); n.put("E", 666); n.put("F", 888);
The following is the complete example to create NavigableMap, add elements and display them
Example
import java.util.*; public class Demo { public static void main(String[] args) { NavigableMap<String, Integer> n = new TreeMap<String, Integer>(); n.put("A", 888); n.put("B", 999); n.put("C", 444); n.put("D", 555); n.put("E", 666); n.put("F", 888); n.put("G", 999); n.put("H", 444); n.put("I", 555); n.put("J", 666); System.out.println("NavigableMap elements...
"+n); } }
Output
NavigableMap elements... {A=888, B=999, C=444, D=555, E=666, F=888, G=999, H=444, I=555, J=666}
- Related Articles
- Create NavigableMap from TreeMap in Java
- NavigableMap clear() Method in Java
- NavigableMap isEmpty() Method in Java
- NavigableMap put() Method in Java
- NavigableMap ceilingEntry() method in Java
- NavigableMap lastEntry() method in Java
- NavigableMap size() Method in Java
- NavigableMap floorEntry() method in Java
- NavigableMap pollLastEntry() method in Java
- NavigableMap higherEntry() method in Java
- NavigableMap lowerEntry() method in Java
- NavigableMap floorKey() method in Java
- NavigableMap pollFirstEntry() method in Java
- NavigableMap Interface in Java with Example
- Get lower key from NavigableMap in Java

Advertisements