Uses of Interface
com.taco.data.IMapFactory

Packages that use IMapFactory
com.taco.data   
com.taco.text Provides converters to and from text, and other text processing and formatting capabilities. 
 

Uses of IMapFactory in com.taco.data
 

Fields in com.taco.data declared as IMapFactory
protected  IMapFactory ObservableMap._mapFactory
          The factory used to create new maps and copies of maps.
static IMapFactory IMapFactory.HASH_MAP_FACTORY
          A map factory that creates hash maps.
static IMapFactory IMapFactory.LINKED_HASH_MAP_FACTORY
          A map factory that creates linked hash maps.
static IMapFactory IMapFactory.TREE_MAP_FACTORY
          A map factory that creates tree maps.
 

Methods in com.taco.data with parameters of type IMapFactory
static java.util.Map MapUtilities.arrayToMap(java.lang.Object[] array, boolean wrap, IMapFactory mapFactory)
          Create a new map that contains the even elements of array as keys, and the odd elements as values.
static java.util.Map MapUtilities.createSubMap(java.util.Map map, java.lang.Object[] keysToKeep, IMapFactory mapFactory)
          Create a copy of the argument map that only has the keys in keysToKeep.
 

Constructors in com.taco.data with parameters of type IMapFactory
ObservableMap(IMapFactory mapFactory, int capacity, INotificationStrategy notificationStrategy)
          Construct a new instance that uses the argument factory to create a new map that provides storage for the new instance.
ObservableMap(java.util.Map map, IMapFactory mapFactory, INotificationStrategy notificationStrategy)
           
SoftValueMap(IMapFactory mapFactory, int capacity)
           
SoftValueMap(IMapFactory mapFactory, java.util.Map sourceMap)
           
WrappedObservableMap(IMapFactory mapFactory, int capacity, INotificationStrategy notificationStrategy, IObjectMapper keyWrapper, IObjectMapper keyUnwrapper, IObjectMapper valueWrapper, IObjectMapper valueUnwrapper)
           
 

Uses of IMapFactory in com.taco.text
 

Fields in com.taco.text declared as IMapFactory
protected  IMapFactory MapConverter._mapFactory
          The factory used to create the map to return in _literalToObject().
 

Constructors in com.taco.text with parameters of type IMapFactory
MapConverter(IMapFactory mapFactory, IInterpolatingStringToObjectConverter keyConverter, IInterpolatingStringToObjectConverter valueConverter)
          Create an instance that uses the argument map factory to create a map when toObject() is called.