Uses of Interface
org.omnaest.utils.structure.collection.CollectionUtils.ElementConverter

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
<TO,FROM> TO[]
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
<TO,FROM> TO[]
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
<TO,FROM> List<TO>
ListUtil.convertList(Collection<FROM> listFrom, CollectionUtils.ElementConverter<FROM,TO> elementConverter)
          Converts a given list into a new list with a new element type.
static
<TO,FROM> List<TO>
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
<KeyFrom,KeyTo,ValueFrom,ValueTo>
Map<KeyTo,ValueTo>
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
<KeyFrom,KeyTo,ValueFrom,ValueTo>
Map<KeyTo,ValueTo>
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
<KeyFrom,KeyTo,Value>
Map<KeyTo,Value>
MapUtils.convertMapKey(Map<KeyFrom,Value> map, CollectionUtils.ElementConverter<KeyFrom,KeyTo> keyElementConverter)
          Converts the key of a map into another key.
 



Copyright © 2011. All Rights Reserved.