Package com.onenetwork.platform.tools.collections
Utilities for creating & manipulating java collections.
-
Class Summary Class Description AbstractDefaultingHashMap<K,V> Identical toHashMap
, except a call toAbstractDefaultingHashMap.get(Object)
for a nonexistent key will callAbstractDefaultingHashMap.newDefaultValue(Object)
and put() the resulting value, then return that.DefaultingHashMap<K,V> Default implementation ofAbstractDefaultingHashMap
which will create a new Value object using the default constructor of a given class.ListUtil Utilities forList
manipulation.Pair<X,Y> A simple container class for a typed pair of objects.SetUtil Utilities forSet
manipulation.