Mega Code Archive

 
Categories / Java Book / 005 Collection
 

0342 Create singleton

static<T> Set<T> singleton(T o) Returns an immutable set containing only the specified object. static<T> List<T> singletonList(T o) Returns an immutable list containing only the specified object. static<K,V> Map<K,V> singletonMap(K key, V value) Returns an immutable map, mapping only the specified key to the specified value.