Package | Description |
---|---|
org.apache.openjpa.lib.util.collections |
commons-collections4 import.
|
Modifier and Type | Interface and Description |
---|---|
interface |
IterableSortedMap<K,V>
|
interface |
OrderedBidiMap<K,V>
Defines a map that allows bidirectional lookup between key and values
and retains and provides access to an ordering.
|
interface |
SortedBidiMap<K,V>
Defines a map that allows bidirectional lookup between key and values
and retains both keys and values in sorted order.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractLinkedMap<K,V>
An abstract implementation of a hash-based map that links entries to create an
ordered map and which provides numerous points for subclasses to override.
|
class |
AbstractOrderedMapDecorator<K,V>
Provides a base decorator that enables additional functionality to be added
to an OrderedMap via decoration.
|
class |
AbstractSortedMapDecorator<K,V>
Provides a base decorator that enables additional functionality to be added
to a Map via decoration.
|
class |
DualTreeBidiMap<K,V>
|
protected static class |
DualTreeBidiMap.ViewMap<K,V>
Internal sorted map view.
|
class |
LinkedMap<K,V>
A
Map implementation that maintains the order of the entries. |
class |
LRUMap<K,V>
A
Map implementation with a fixed maximum size which removes
the least recently used entry if an entry is added when full. |
class |
TreeBidiMap<K extends Comparable<K>,V extends Comparable<V>>
Red-Black tree-based implementation of BidiMap where all objects added
implement the
Comparable interface. |
class |
UnmodifiableOrderedMap<K,V>
Decorates another
OrderedMap to ensure it can't be altered. |
Modifier and Type | Method and Description |
---|---|
protected OrderedMap<K,V> |
AbstractOrderedMapDecorator.decorated()
Gets the map being decorated.
|
static <K,V> OrderedMap<K,V> |
UnmodifiableOrderedMap.unmodifiableOrderedMap(OrderedMap<? extends K,? extends V> map)
Factory method to create an unmodifiable sorted map.
|
Modifier and Type | Method and Description |
---|---|
static <K,V> OrderedMap<K,V> |
UnmodifiableOrderedMap.unmodifiableOrderedMap(OrderedMap<? extends K,? extends V> map)
Factory method to create an unmodifiable sorted map.
|
Constructor and Description |
---|
AbstractOrderedMapDecorator(OrderedMap<K,V> map)
Constructor that wraps (not copies).
|
Copyright © 2006–2022 Apache Software Foundation. All rights reserved.