Package | Description |
---|---|
org.codefx.libfx.collection.transform |
Provides transforming collections.
|
Modifier and Type | Method and Description |
---|---|
static <I,O> TransformingCollectionBuilder<I,O> |
TransformingCollectionBuilder.forInnerAndOuterType(Class<? super I> innerTypeToken,
Class<? super O> outerTypeToken)
Returns a new builder for the specified inner and outer type.
|
static <I,O> TransformingCollectionBuilder<I,O> |
TransformingCollectionBuilder.forInnerAndOuterTypeUnknown()
Returns a new builder for unknown inner and outer types.
|
TransformingCollectionBuilder<I,O> |
TransformingCollectionBuilder.toInner(Function<? super O,? extends I> transformToInner)
Sets the transformation from outer to inner elements which will be used by the created collection.
|
TransformingCollectionBuilder<I,O> |
TransformingCollectionBuilder.toOuter(Function<? super I,? extends O> transformToOuter)
Sets the transformation from inner to outer elements which will be used by the created collection.
|
This documentation is licensed under CC-BY 4.0, attributed to Nicolai Parlog from CodeFX.