Package org.apache.sis.util.collection
Addition to the collection framework. Most classes in this package implement interfaces
from the Java Collection Framework defined in the
java.util package.
-
WeakHashSetprovides a way to ensure that a factory returns unique instances for all values that are equal in the sense ofObjects.deepEquals(Object, Object). The values that were created in previous factory operations are retained by weak references for reuse. -
CacheandWeakValueHashMaparejava.util.Mapimplementations that may be used for some caching or pseudo-caching functionalities. TheCacheimplementation is the most full-featured one and supports concurrency, while the other implementations are more lightweight, sometime thread-safe but without concurrency support. - Derived Map and derived Set are wrapper collections in which the keys or the values are derived on-the-fly from the content of an other collection. The can also be used for creating filtered views.
-
IntegerList,CodeListSetandRangeSetare collections specialized for a particular kind of content, providing more efficient storage than what we would get with the general-purpose collection implementations. -
FrequencySortedSetprovides specialized ways to organize its elements.
- Since:
- 0.3
Defined in the sis-utility module
-
Interface Summary Interface Description Cache.Handler<V> The handler returned byCache.lock(K), to be used for unlocking and storing the result.CheckedContainer<E> A container that ensures that all elements are assignable to a given base type.TreeTable Defines the structure (list of columns) of a table and provides the root of the tree containing the data.TreeTable.Node A node in a tree combined with a row in a table. -
Class Summary Class Description Cache<K,V> A concurrent map capable to locks entries for which the value is in process of being computed.CodeListSet<E extends CodeList<E>> A specializedSetimplementation for use withCodeListvalues.Containers Static methods working onCollectionorCheckedContainerobjects.DefaultTreeTable ATreeTableimplementation with a list of columns given at construction time.DefaultTreeTable.Node ATreeTable.Nodeimplementation which can store values for a pre-defined list of columns.FrequencySortedSet<E> A set with elements ordered by the amount of time they were added.IntegerList A list of unsigned integer values.RangeSet<E extends Comparable<? super E>> An ordered set of disjoint ranges where overlapping ranges are merged.TableColumn<V> Identifies a column inTreeTable.Nodeinstances.TreeTableFormat A parser and formatter forTreeTableinstances.TreeTables Static methods working onTreeTableobjects and their nodes.WeakHashSet<E> A set of objects hold by weak references.WeakValueHashMap<K,V> A hashtable-based map implementation that uses weak references, leaving memory when an entry is not used anymore. -
Exception Summary Exception Description BackingStoreException Thrown to indicate that an operation could not complete because of a failure in the backing store (a file or a database).