Uses of Class
com.threerings.util.DefaultMap

Packages that use DefaultMap
com.threerings.util   
 

Uses of DefaultMap in com.threerings.util
 

Methods in com.threerings.util that return DefaultMap
static
<K,V> DefaultMap<K,V>
DefaultMap.newHashMap(Function<K,V> creator)
          Creates a default map backed by a HashMap using the supplied default creator.
static
<K,V> DefaultMap<K,V>
DefaultMap.newInstanceHashMap(Class<V> clazz)
          Creates a default map backed by a HashMap that creates instances of the supplied class (using its no-args constructor) as defaults.
static
<K,V> DefaultMap<K,V>
DefaultMap.newInstanceMap(Map<K,V> delegate, Class<V> clazz)
          Creates a default map backed by the supplied map that creates instances of the supplied class (using its no-args constructor) as defaults.
static
<K,V> DefaultMap<K,V>
DefaultMap.newMap(Map<K,V> delegate, Function<K,V> creator)
          Creates a default map backed by the supplied map using the supplied default creator.
 



Copyright © 2012. All Rights Reserved.