| Package | Description |
|---|---|
| org.apache.commons.collections4 |
This package contains the interfaces and utilities shared across all the subpackages of this component.
|
| org.apache.commons.collections4.bag | |
| org.apache.commons.collections4.collection |
This package contains implementations of the
Collection interface.
|
| org.apache.commons.collections4.comparators |
This package contains implementations of the
Comparator interface.
|
| org.apache.commons.collections4.functors |
This package contains implementations of the
Closure,
Predicate,
Transformer and
Factory interfaces.
|
| org.apache.commons.collections4.iterators |
This package contains implementations of the
Iterator interface.
|
| org.apache.commons.collections4.list |
This package contains implementations of the
List interface.
|
| org.apache.commons.collections4.map | |
| org.apache.commons.collections4.multimap |
This package contains implementations of the
MultiValuedMap interfaces.
|
| org.apache.commons.collections4.queue |
This package contains implementations for the
Queue interface.
|
| org.apache.commons.collections4.set | |
| org.apache.commons.collections4.splitmap |
| Modifier and Type | Method and Description |
|---|---|
static <T> Transformer |
TransformerUtils.asTransformer(Closure
Creates a Transformer that calls a Closure each time the transformer is used.
|
static <I |
TransformerUtils.asTransformer(Factory
Creates a Transformer that calls a Factory each time the transformer is used.
|
static <T> Transformer |
TransformerUtils.asTransformer(Predicate
Creates a Transformer that calls a Predicate each time the transformer is used.
|
static <T> Transformer |
TransformerUtils.chainedTransformer(Collection
Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.
|
static <T> Transformer |
TransformerUtils.chainedTransformer(Transformer
Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.
|
static <T> Transformer |
TransformerUtils.cloneTransformer()
Gets a transformer that returns a clone of the input object.
|
static <I |
TransformerUtils.constantTransformer(O constantToReturn)
Creates a Transformer that will return the same object each time the transformer is used.
|
static <I |
TransformerUtils.exceptionTransformer()
Gets a transformer that always throws an exception.
|
static <I |
TransformerUtils.ifTransformer(Predicate
Create a new Transformer that calls one of two transformers depending on the specified predicate.
|
static <T> Transformer |
TransformerUtils.ifTransformer(Predicate
Create a new Transformer that calls the transformer if the predicate is true, otherwise the input object is returned unchanged.
|
static <T> Transformer |
TransformerUtils.instantiateTransformer()
Gets a Transformer that expects an input Class object that it will instantiate.
|
static <T> Transformer |
TransformerUtils.instantiateTransformer(Class
Creates a Transformer that expects an input Class object that it will instantiate.
|
static <I |
TransformerUtils.invokerTransformer(String
Gets a Transformer that invokes a method on the input object.
|
static <I |
TransformerUtils.invokerTransformer(String
Gets a Transformer that invokes a method on the input object.
|
static <I |
TransformerUtils.mapTransformer(Map
Creates a Transformer that uses the passed in Map to transform the input object (as a simple lookup).
|
static <T> Transformer |
TransformerUtils.nopTransformer()
Gets a transformer that returns the input object.
|
static <I |
TransformerUtils.nullTransformer()
Gets a transformer that always returns null.
|
static <T> Transformer |
TransformerUtils.stringValueTransformer()
Gets a transformer that returns a
java.lang.String representation of the input object.
|
static <I |
TransformerUtils.switchMapTransformer(Map
Create a new Transformer that uses the input object as a key to find the transformer to call.
|
static <I |
TransformerUtils.switchTransformer(Map
Create a new Transformer that calls one of the transformers depending on the predicates.
|
static <I |
TransformerUtils.switchTransformer(Predicate
Create a new Transformer that calls one of the transformers depending on the predicates.
|
static <I |
TransformerUtils.switchTransformer(Predicate
Create a new Transformer that calls one of the transformers depending on the predicates.
|
static <I |
TransformerUtils.switchTransformer(Predicate
Deprecated.
as of 4.1, use {@link #ifTransformer(Predicate, Transformer, Transformer))
|
| Modifier and Type | Method and Description |
|---|---|
static <E> Closure |
ClosureUtils.asClosure(Transformer
Creates a Closure that calls a Transformer each time it is called.
|
static <T> Predicate |
PredicateUtils.asPredicate(Transformer
Create a new Predicate that wraps a Transformer.
|
static <T> Transformer |
TransformerUtils.chainedTransformer(Transformer
Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.
|
static <I |
CollectionUtils.collect(Iterable
Transforms all elements from input collection with the given transformer and adds them to the output collection.
|
static <I |
CollectionUtils.collect(Iterable
Returns a new Collection containing all elements of the input collection transformed by the given transformer.
|
static <I |
CollectionUtils.collect(Iterator
Transforms all elements from the input iterator with the given transformer and adds them to the output collection.
|
static <I |
CollectionUtils.collect(Iterator
Transforms all elements from the input iterator with the given transformer and adds them to the output collection.
|
static <I |
TransformerUtils.ifTransformer(Predicate
Create a new Transformer that calls one of two transformers depending on the specified predicate.
|
static <I |
TransformerUtils.ifTransformer(Predicate
Create a new Transformer that calls one of two transformers depending on the specified predicate.
|
static <T> Transformer |
TransformerUtils.ifTransformer(Predicate
Create a new Transformer that calls the transformer if the predicate is true, otherwise the input object is returned unchanged.
|
static <K |
MapUtils.lazyMap(Map
Returns a "lazy" map whose values will be created on demand.
|
static <K |
MapUtils.lazySortedMap(SortedMap
Returns a "lazy" sorted map whose values will be created on demand.
|
static <E> Iterator |
IteratorUtils.objectGraphIterator(E root, Transformer
Gets an iterator that operates over an object graph.
|
static <K |
MapUtils.populateMap(Map
Populates a Map using the supplied
Transformers to transform the elements into keys and values.
|
static <K |
MapUtils.populateMap(Map
Populates a Map using the supplied
Transformers to transform the elements into keys and values.
|
static <K |
MapUtils.populateMap(Map
Populates a Map using the supplied
Transformer to transform the elements into keys, using the unaltered element as the value in the
Map.
|
static <K |
MapUtils.populateMap(MultiMap
Populates a MultiMap using the supplied
Transformers to transform the elements into keys and values.
|
static <K |
MapUtils.populateMap(MultiMap
Populates a MultiMap using the supplied
Transformers to transform the elements into keys and values.
|
static <K |
MapUtils.populateMap(MultiMap
Populates a MultiMap using the supplied
Transformer to transform the elements into keys, using the unaltered element as the value in the
MultiMap.
|
static <I |
TransformerUtils.switchTransformer(Predicate
Create a new Transformer that calls one of the transformers depending on the predicates.
|
static <I |
TransformerUtils.switchTransformer(Predicate
Create a new Transformer that calls one of the transformers depending on the predicates.
|
static <I |
TransformerUtils.switchTransformer(Predicate
Create a new Transformer that calls one of the transformers depending on the predicates.
|
static <I |
TransformerUtils.switchTransformer(Predicate
Deprecated.
as of 4.1, use {@link #ifTransformer(Predicate, Transformer, Transformer))
|
static <I |
TransformerUtils.switchTransformer(Predicate
Deprecated.
as of 4.1, use {@link #ifTransformer(Predicate, Transformer, Transformer))
|
static <E> String |
IterableUtils.toString(Iterable
Returns a string representation of the elements of the specified iterable.
|
static <E> String |
IterableUtils.toString(Iterable
Returns a string representation of the elements of the specified iterable.
|
static <E> String |
IteratorUtils.toString(Iterator
Returns a string representation of the elements of the specified iterator.
|
static <E> String |
IteratorUtils.toString(Iterator
Returns a string representation of the elements of the specified iterator.
|
static <C> void |
CollectionUtils.transform(Collection
Transform the collection by applying a Transformer to each element.
|
<O> FluentIterable |
FluentIterable.transform(Transformer
Returns a new FluentIterable whose iterator will return all elements of this iterable transformed by the provided transformer.
|
static <I |
ComparatorUtils.transformedComparator(Comparator
Gets a Comparator that passes transformed objects to the given comparator.
|
static <I |
IterableUtils.transformedIterable(Iterable
Returns a transformed view of the given iterable where all of its elements have been transformed by the provided transformer.
|
static <I |
IteratorUtils.transformedIterator(Iterator
Gets an iterator that transforms the elements of another iterator.
|
static <E> List |
ListUtils.transformedList(List
Returns a transformed list backed by the given list.
|
static <K |
MapUtils.transformedMap(Map
Returns a transformed map backed by the given map.
|
static <K |
MapUtils.transformedMap(Map
Returns a transformed map backed by the given map.
|
static <K |
MultiMapUtils.transformedMultiValuedMap(MultiValuedMap
Returns a
TransformedMultiValuedMap backed by the given map.
|
static <K |
MultiMapUtils.transformedMultiValuedMap(MultiValuedMap
Returns a
TransformedMultiValuedMap backed by the given map.
|
static <E> SortedSet |
SetUtils.transformedNavigableSet(NavigableSet
Returns a transformed navigable set backed by the given navigable set.
|
static <T> Predicate |
PredicateUtils.transformedPredicate(Transformer
Creates a predicate that transforms the input object before passing it to the predicate.
|
static <E> Set |
SetUtils.transformedSet(Set
Returns a transformed set backed by the given set.
|
static <K |
MapUtils.transformedSortedMap(SortedMap
Returns a transformed sorted map backed by the given map.
|
static <K |
MapUtils.transformedSortedMap(SortedMap
Returns a transformed sorted map backed by the given map.
|
static <E> SortedSet |
SetUtils.transformedSortedSet(SortedSet
Returns a transformed sorted set backed by the given set.
|
static <E> Bag |
BagUtils.transformingBag(Bag
Returns a transformed bag backed by the given bag.
|
static <E> Collection |
CollectionUtils.transformingCollection(Collection
Returns a transformed bag backed by the given collection.
|
static <E> Queue |
QueueUtils.transformingQueue(Queue
Returns a transformed queue backed by the given queue.
|
static <E> SortedBag |
BagUtils.transformingSortedBag(SortedBag
Returns a transformed sorted bag backed by the given bag.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> Transformer |
TransformerUtils.chainedTransformer(Collection
Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.
|
static <I |
TransformerUtils.switchMapTransformer(Map
Create a new Transformer that uses the input object as a key to find the transformer to call.
|
static <I |
TransformerUtils.switchTransformer(Map
Create a new Transformer that calls one of the transformers depending on the predicates.
|
| Modifier and Type | Method and Description |
|---|---|
static <E> Bag |
TransformedBag.transformedBag(Bag
Factory method to create a transforming bag that will transform existing contents of the specified bag.
|
static <E> TransformedSortedBag |
TransformedSortedBag.transformedSortedBag(SortedBag
Factory method to create a transforming sorted bag that will transform existing contents of the specified sorted bag.
|
static <E> Bag |
TransformedBag.transformingBag(Bag
Factory method to create a transforming bag.
|
static <E> TransformedSortedBag |
TransformedSortedBag.transformingSortedBag(SortedBag
Factory method to create a transforming sorted bag.
|
| Constructor and Description | |
|---|---|
TransformedBag(Bag
Constructor that wraps (not copies).
|
|
TransformedSortedBag(SortedBag
Constructor that wraps (not copies).
|
| Modifier and Type | Field and Description |
|---|---|
protected Transformer |
TransformedCollection.transformer
The transformer to use
|
| Modifier and Type | Method and Description |
|---|---|
static <K |
IndexedCollection.nonUniqueIndexedCollection(Collection
Create an
IndexedCollection for a non-unique index.
|
static <E> TransformedCollection |
TransformedCollection.transformedCollection(Collection
Factory method to create a transforming collection that will transform existing contents of the specified collection.
|
static <E> TransformedCollection |
TransformedCollection.transformingCollection(Collection
Factory method to create a transforming collection.
|
static <K |
IndexedCollection.uniqueIndexedCollection(Collection
Create an
IndexedCollection for a unique index.
|
| Constructor and Description | |
|---|---|
IndexedCollection(Collection
Create a
IndexedCollection.
|
|
TransformedCollection(Collection
Constructor that wraps (not copies).
|
| Constructor and Description | |
|---|---|
TransformingComparator(Transformer
Constructs an instance with the given Transformer and a
ComparableComparator.
|
|
TransformingComparator(Transformer
Constructs an instance with the given Transformer and Comparator.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ChainedTransformer<T>
Transformer implementation that chains the specified transformers together.
|
class |
CloneTransformer<T>
Transformer implementation that returns a clone of the input object.
|
class |
ClosureTransformer<T>
Transformer implementation that calls a Closure using the input object and then returns the input.
|
class |
ConstantTransformer<I
Transformer implementation that returns the same constant each time.
|
class |
ExceptionTransformer<I
Transformer implementation that always throws an exception.
|
class |
FactoryTransformer<I
Transformer implementation that calls a Factory and returns the result.
|
class |
IfTransformer<I
Transformer implementation that will call one of two closures based on whether a predicate evaluates as true or false.
|
class |
InstantiateTransformer<T>
Transformer implementation that creates a new object instance by reflection.
|
class |
InvokerTransformer<I
Transformer implementation that creates a new object instance by reflection.
|
class |
MapTransformer<I
Transformer implementation that returns the value held in a specified map using the input parameter as a key.
|
class |
NOPTransformer<T>
Transformer implementation that does nothing.
|
class |
PredicateTransformer<T>
Transformer implementation that calls a Predicate using the input object and then returns the result.
|
class |
StringValueTransformer<T>
Transformer implementation that returns the result of calling
String.valueOf on the input object.
|
class |
SwitchTransformer<I
Transformer implementation calls the transformer whose predicate returns true, like a switch statement.
|
| Modifier and Type | Field and Description |
|---|---|
static Transformer |
CloneTransformer.INSTANCE
Singleton predicate instance
|
static Transformer |
NOPTransformer.INSTANCE
Singleton predicate instance
|
static Transformer |
ExceptionTransformer.INSTANCE
Singleton predicate instance
|
static Transformer |
ConstantTransformer.NULL_INSTANCE
Returns null each time
|
| Modifier and Type | Method and Description |
|---|---|
static <T> Transformer |
ChainedTransformer.chainedTransformer(Collection
Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.
|
static <T> Transformer |
ChainedTransformer.chainedTransformer(Transformer
Factory method that performs validation and copies the parameter array.
|
static <T> Transformer |
CloneTransformer.cloneTransformer()
Factory returning the singleton instance.
|
static <T> Transformer |
ClosureTransformer.closureTransformer(Closure
Factory method that performs validation.
|
static <I |
ConstantTransformer.constantTransformer(O constantToReturn)
Transformer method that performs validation.
|
static <I |
ExceptionTransformer.exceptionTransformer()
Factory returning the singleton instance.
|
static <I |
FactoryTransformer.factoryTransformer(Factory
Factory method that performs validation.
|
Transformer |
SwitchTransformer.getDefaultTransformer()
Gets the default transformer.
|
Transformer |
IfTransformer.getFalseTransformer()
Gets the transformer used when false.
|
Transformer |
TransformerClosure.getTransformer()
Gets the transformer.
|
Transformer |
TransformedPredicate.getTransformer()
Gets the transformer in use.
|
Transformer |
TransformerPredicate.getTransformer()
Gets the transformer.
|
Transformer |
ChainedTransformer.getTransformers()
Gets the transformers.
|
Transformer |
SwitchTransformer.getTransformers()
Gets the transformers.
|
Transformer |
IfTransformer.getTrueTransformer()
Gets the transformer used when true.
|
static <I |
IfTransformer.ifTransformer(Predicate
Factory method that performs validation.
|
static <T> Transformer |
IfTransformer.ifTransformer(Predicate
Factory method that performs validation.
|
static <T> Transformer |
InstantiateTransformer.instantiateTransformer()
Get a typed no-arg instance.
|
static <T> Transformer |
InstantiateTransformer.instantiateTransformer(Class
Transformer method that performs validation.
|
static <I |
InvokerTransformer.invokerTransformer(String
Gets an instance of this transformer calling a specific method with no arguments.
|
static <I |
InvokerTransformer.invokerTransformer(String
Gets an instance of this transformer calling a specific method with specific values.
|
static <I |
MapTransformer.mapTransformer(Map
Factory to create the transformer.
|
static <T> Transformer |
NOPTransformer.nopTransformer()
Factory returning the singleton instance.
|
static <I |
ConstantTransformer.nullTransformer()
Get a typed null instance.
|
static <T> Transformer |
PredicateTransformer.predicateTransformer(Predicate
Factory method that performs validation.
|
static <T> Transformer |
StringValueTransformer.stringValueTransformer()
Factory returning the singleton instance.
|
static <I |
SwitchTransformer.switchTransformer(Map
Create a new Transformer that calls one of the transformers depending on the predicates.
|
static <I |
SwitchTransformer.switchTransformer(Predicate
Factory method that performs validation and copies the parameter arrays.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> Transformer |
ChainedTransformer.chainedTransformer(Transformer
Factory method that performs validation and copies the parameter array.
|
static <I |
IfTransformer.ifTransformer(Predicate
Factory method that performs validation.
|
static <I |
IfTransformer.ifTransformer(Predicate
Factory method that performs validation.
|
static <T> Transformer |
IfTransformer.ifTransformer(Predicate
Factory method that performs validation.
|
static <I |
SwitchTransformer.switchTransformer(Predicate
Factory method that performs validation and copies the parameter arrays.
|
static <I |
SwitchTransformer.switchTransformer(Predicate
Factory method that performs validation and copies the parameter arrays.
|
static <T> Predicate |
TransformedPredicate.transformedPredicate(Transformer
Factory to create the predicate.
|
static <E> Closure |
TransformerClosure.transformerClosure(Transformer
Factory method that performs validation.
|
static <T> Predicate |
TransformerPredicate.transformerPredicate(Transformer
Factory to create the predicate.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> Transformer |
ChainedTransformer.chainedTransformer(Collection
Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.
|
static <I |
SwitchTransformer.switchTransformer(Map
Create a new Transformer that calls one of the transformers depending on the predicates.
|
| Constructor and Description | |
|---|---|
ChainedTransformer(Transformer
Constructor that performs no validation.
|
|
IfTransformer(Predicate
Constructor that performs no validation.
|
|
IfTransformer(Predicate
Constructor that performs no validation.
|
|
SwitchTransformer(Predicate
Constructor that performs no validation.
|
|
SwitchTransformer(Predicate
Constructor that performs no validation.
|
|
TransformedPredicate(Transformer
Constructor that performs no validation.
|
|
TransformerClosure(Transformer
Constructor that performs no validation.
|
|
TransformerPredicate(Transformer
Constructor that performs no validation.
|
| Modifier and Type | Method and Description |
|---|---|
Transformer |
TransformIterator.getTransformer()
Gets the transformer this iterator is using.
|
| Modifier and Type | Method and Description |
|---|---|
void |
TransformIterator.setTransformer(Transformer
Sets the transformer this the iterator to use.
|
| Constructor and Description | |
|---|---|
ObjectGraphIterator(E root, Transformer
Constructs an ObjectGraphIterator using a root object and transformer.
|
|
TransformIterator(Iterator
Constructs a new
TransformIterator that will use the given iterator and transformer.
|
| Modifier and Type | Method and Description |
|---|---|
static <E> TransformedList |
TransformedList.transformedList(List
Factory method to create a transforming list that will transform existing contents of the specified list.
|
static <E> TransformedList |
TransformedList.transformingList(List
Factory method to create a transforming list.
|
| Constructor and Description | |
|---|---|
TransformedList(List
Constructor that wraps (not copies).
|
| Modifier and Type | Field and Description |
|---|---|
protected Transformer |
LazyMap.factory
The factory to use to construct elements
|
protected Transformer |
TransformedMap.keyTransformer
The transformer to use for the key
|
protected Transformer |
TransformedMap.valueTransformer
The transformer to use for the value
|
| Modifier and Type | Method and Description |
|---|---|
static <K |
DefaultedMap.defaultedMap(Map
Factory method to create a defaulting map.
|
static <V |
LazyMap.lazyMap(Map
Factory method to create a lazily instantiated map.
|
static <K |
LazySortedMap.lazySortedMap(SortedMap
Factory method to create a lazily instantiated sorted map.
|
static <K |
TransformedMap.transformedMap(Map
Factory method to create a transforming map that will transform existing contents of the specified map.
|
static <K |
TransformedMap.transformedMap(Map
Factory method to create a transforming map that will transform existing contents of the specified map.
|
static <K |
TransformedSortedMap.transformedSortedMap(SortedMap
Factory method to create a transforming sorted map that will transform existing contents of the specified map.
|
static <K |
TransformedSortedMap.transformedSortedMap(SortedMap
Factory method to create a transforming sorted map that will transform existing contents of the specified map.
|
static <K |
TransformedMap.transformingMap(Map
Factory method to create a transforming map.
|
static <K |
TransformedMap.transformingMap(Map
Factory method to create a transforming map.
|
static <K |
TransformedSortedMap.transformingSortedMap(SortedMap
Factory method to create a transforming sorted map.
|
static <K |
TransformedSortedMap.transformingSortedMap(SortedMap
Factory method to create a transforming sorted map.
|
| Constructor and Description | |
|---|---|
DefaultedMap(Map
Constructor that wraps (not copies).
|
|
DefaultedMap(Transformer
Constructs a new empty
DefaultedMap that decorates a
HashMap.
|
|
LazyMap(Map
Constructor that wraps (not copies).
|
|
LazySortedMap(SortedMap
Constructor that wraps (not copies).
|
|
TransformedMap(Map
Constructor that wraps (not copies).
|
|
TransformedMap(Map
Constructor that wraps (not copies).
|
|
TransformedSortedMap(SortedMap
Constructor that wraps (not copies).
|
|
TransformedSortedMap(SortedMap
Constructor that wraps (not copies).
|
| Modifier and Type | Method and Description |
|---|---|
static <K |
TransformedMultiValuedMap.transformedMap(MultiValuedMap
Factory method to create a transforming MultiValuedMap that will transform existing contents of the specified map.
|
static <K |
TransformedMultiValuedMap.transformedMap(MultiValuedMap
Factory method to create a transforming MultiValuedMap that will transform existing contents of the specified map.
|
static <K |
TransformedMultiValuedMap.transformingMap(MultiValuedMap
Factory method to create a transforming MultiValuedMap.
|
static <K |
TransformedMultiValuedMap.transformingMap(MultiValuedMap
Factory method to create a transforming MultiValuedMap.
|
| Constructor and Description | |
|---|---|
TransformedMultiValuedMap(MultiValuedMap
Constructor that wraps (not copies).
|
|
TransformedMultiValuedMap(MultiValuedMap
Constructor that wraps (not copies).
|
| Modifier and Type | Method and Description |
|---|---|
static <E> TransformedQueue |
TransformedQueue.transformedQueue(Queue
Factory method to create a transforming queue that will transform existing contents of the specified queue.
|
static <E> TransformedQueue |
TransformedQueue.transformingQueue(Queue
Factory method to create a transforming queue.
|
| Constructor and Description | |
|---|---|
TransformedQueue(Queue
Constructor that wraps (not copies).
|
| Modifier and Type | Method and Description |
|---|---|
static <E> TransformedNavigableSet |
TransformedNavigableSet.transformedNavigableSet(NavigableSet
Factory method to create a transforming navigable set that will transform existing contents of the specified navigable set.
|
static <E> Set |
TransformedSet.transformedSet(Set
Factory method to create a transforming set that will transform existing contents of the specified set.
|
static <E> TransformedSortedSet |
TransformedSortedSet.transformedSortedSet(SortedSet
Factory method to create a transforming sorted set that will transform existing contents of the specified sorted set.
|
static <E> TransformedNavigableSet |
TransformedNavigableSet.transformingNavigableSet(NavigableSet
Factory method to create a transforming navigable set.
|
static <E> TransformedSet |
TransformedSet.transformingSet(Set
Factory method to create a transforming set.
|
static <E> TransformedSortedSet |
TransformedSortedSet.transformingSortedSet(SortedSet
Factory method to create a transforming sorted set.
|
| Constructor and Description | |
|---|---|
TransformedNavigableSet(NavigableSet
Constructor that wraps (not copies).
|
|
TransformedSet(Set
Constructor that wraps (not copies).
|
|
TransformedSortedSet(SortedSet
Constructor that wraps (not copies).
|
| Modifier and Type | Method and Description |
|---|---|
static <J |
TransformedSplitMap.transformingMap(Map
Factory method to create a transforming map.
|
static <J |
TransformedSplitMap.transformingMap(Map
Factory method to create a transforming map.
|
| Constructor and Description | |
|---|---|
TransformedSplitMap(Map
Constructor that wraps (not copies).
|
|
TransformedSplitMap(Map
Constructor that wraps (not copies).
|