A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/java/util/collections_singletonmap.htm below:

Java Collections singletonMap() Method

Java Collections singletonMap() Method Description

The Java Collections singletonMap(K, V) method is used to get an immutable map, mapping only the specified key to the specified value.

Declaration

Following is the declaration for java.util.Collections.singletonMap() method.

public static <K,V> Map<K,V> singletonMap(K key,V value)
Parameters Return Value

The method call returns an immutable map containing only the specified key-value mapping.

Exception

NA

Getting a Singleton Map of String, Integer Example

The following example shows the usage of Java Collection singletonMap(Class,Class ) method to get a singleton map of String and Integers. We've created a Map object with a single string and integer using singletonMap(String, Integer) method and then it is printed.

package com.tutorialspoint;

import java.util.Collections;
import java.util.Map;

public class CollectionsDemo {
   public static void main(String[] a) {
      
      // create singleton map
      Map<String, Integer> map = Collections.singletonMap("A",1);

      System.out.println("Singleton map is: "+map);
   }
}
Output

Let us compile and run the above program, this will produce the following result.

Singleton map is: {A=1}
Getting a Singleton Map of String, Boolean Example

The following example shows the usage of Java Collection singletonMap(Class,Class ) method to get a singleton map of String and Boolean. We've created a Map object with a single string and boolean using singletonMap(String, Boolean) method and then it is printed.

package com.tutorialspoint;

import java.util.Collections;
import java.util.Map;

public class CollectionsDemo {
   public static void main(String[] a) {
      
      // create singleton map
      Map<String, Boolean> map = Collections.singletonMap("A",true);

      System.out.println("Singleton map is: "+map);
   }
}
Output

Let us compile and run the above program, this will produce the following result.

Singleton map is: {A=true}
Getting a Singleton Map of String, String Example

The following example shows the usage of Java Collection singletonMap(Class,Class ) method to get a singleton map of String and String. We've created a Map object with a single string and string using singletonMap(String, String) method and then it is printed.

package com.tutorialspoint;

import java.util.Collections;
import java.util.Map;

public class CollectionsDemo {
   public static void main(String[] a) {
      
      // create singleton map
      Map<String, String> map = Collections.singletonMap("A","ABC");

      System.out.println("Singleton map is: "+map);
   }
}
Output

Let us compile and run the above program, this will produce the following result.

Singleton map is: {A=ABC}

java_util_collections.htm


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4