|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CollectionUtils.ElementConverter | |
|---|---|
| org.omnaest.utils.structure.array | |
| org.omnaest.utils.structure.collection | |
| org.omnaest.utils.structure.collection.list | |
| org.omnaest.utils.structure.map | |
| Uses of CollectionUtils.ElementConverter in org.omnaest.utils.structure.array |
|---|
| Methods in org.omnaest.utils.structure.array with parameters of type CollectionUtils.ElementConverter | ||
|---|---|---|
static
|
ArrayUtils.convertArray(FROM[] arrayFrom,
TO[] arrayTo,
CollectionUtils.ElementConverter<FROM,TO> elementConverter)
Converts a given array into a new array with a new element type. |
|
static
|
ArrayUtils.convertArrayExcludingNullElements(FROM[] arrayFrom,
TO[] arrayTo,
CollectionUtils.ElementConverter<FROM,TO> elementConverter)
Converts a given array into a new list with a new element type, whereby all elements which convert to null will be excluded in the target list. |
|
| Uses of CollectionUtils.ElementConverter in org.omnaest.utils.structure.collection |
|---|
| Classes in org.omnaest.utils.structure.collection that implement CollectionUtils.ElementConverter | |
|---|---|
static class |
CollectionUtils.IdentityElementConverter<T>
Does not change the type of the element and the value of the element being converted. |
| Uses of CollectionUtils.ElementConverter in org.omnaest.utils.structure.collection.list |
|---|
| Methods in org.omnaest.utils.structure.collection.list with parameters of type CollectionUtils.ElementConverter | ||
|---|---|---|
static
|
ListUtil.convertList(Collection<FROM> listFrom,
CollectionUtils.ElementConverter<FROM,TO> elementConverter)
Converts a given list into a new list with a new element type. |
|
static
|
ListUtil.convertListExcludingNullElements(Collection<FROM> listFrom,
CollectionUtils.ElementConverter<FROM,TO> elementConverter)
Converts a given list into a new list with a new element type, whereby all elements which convert to null will be excluded in the target list. |
|
| Uses of CollectionUtils.ElementConverter in org.omnaest.utils.structure.map |
|---|
| Methods in org.omnaest.utils.structure.map with parameters of type CollectionUtils.ElementConverter | ||
|---|---|---|
static
|
MapUtils.convertMap(Map<KeyFrom,ValueFrom> map,
CollectionUtils.ElementConverter<KeyFrom,KeyTo> keyElementConverter,
CollectionUtils.ElementConverter<ValueFrom,ValueTo> valueElementConverter)
Converts a given map into a new map with new types. |
|
static
|
MapUtils.convertMap(Map<KeyFrom,ValueFrom> map,
CollectionUtils.ElementConverter<KeyFrom,KeyTo> keyElementConverter,
CollectionUtils.ElementConverter<ValueFrom,ValueTo> valueElementConverter)
Converts a given map into a new map with new types. |
|
static
|
MapUtils.convertMapKey(Map<KeyFrom,Value> map,
CollectionUtils.ElementConverter<KeyFrom,KeyTo> keyElementConverter)
Converts the key of a map into another key. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||