Java Collections emptyNavigableMap() MethodThe emptyNavigableMap() method of Java Collections class returns an empty navigable map which is immutable. SyntaxFollowing is the declaration of emptyNavigableMap() method: ParameterThis method does not accept any parameter. ReturnsThe emptyNavigableMap() method returns an empty immutable Navigable Map. ExceptionsNA Compatibility VersionJava 1.8 and above Example 1Test it NowOutput: Created Empty Navigable Map: {} Example 2Test it NowOutput: Created Empty Navigable Map: {} Exception in thread "main" java.lang.UnsupportedOperationException at java.base/java.util.Collections$UnmodifiableMap.put(Collections.java:1453) at myPackage.CollectionsEmptyNavigableMapExample2.main(CollectionsEmptyNavigableMapExample2.java:9) Example 3Test it NowOutput: Exception in thread "main" java.lang.UnsupportedOperationException at java.base/java.util.Collections$UnmodifiableMap.put(Collections.java:1453) at myPackage.CollectionsEmptyNavigableMapExample3.main(CollectionsEmptyNavigableMapExample3.java:7) Next TopicJava Collections Class |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India