AbstractMultiMap is a MultiMap which implements most of
the features.ComposedKey is an utilitary class to compose several pieces of data
in a single one and use this composition as a key, for instance in a
Map.Lists based
on their content.Filter allows to tell whether an element is supported or rejected.Filter
s.Filters.FilterDecider allows to specify how an undecided case should be
managed.FilteringStrategy allows to describe how are managed the undecided
cases.Maps are used to store the data.HashMultiMap is a MultiMap which allows at most one
instance for each (key, value).ListIterator aims at providing a way to generate an exhaustive
sequence of possible Lists.ListMultiMap is a MultiMap which allows to have several
instances for each (key, value).MultiMap allows to map a key to several values.NaturalComparator allows to compare two elements in a human way,
which is commonly interpreted as a comparison which:
is not case sensitive
treat numbers as numbers (not as strings)
For example, "file" and "File" are merely the same names and so should be
grouped together.NaturalComparator which compare the elements
based on their string representation (Object.toString()).NaturalComparator which exploits a specific string
representation for the elements.ReflexiveMap aims at providing a Map which support a
bijective relation.SetIterator aims at providing a way to generate an exhaustive
sequence of possible Sets.Map.get(Object) provide the single value assigned to a
single key, this method aims at retrieving a List of values
corresponding to a List of keys.UndecidedFilteringException arises when no decision can be taken
regarding the support or rejection of an element in regard to some
Filters.Copyright © 2014–2015. All rights reserved.