Uses of Interface
org.omnaest.utils.structure.element.filter.ElementFilter

Packages that use ElementFilter
org.omnaest.utils.structure.collection.list   
org.omnaest.utils.structure.collection.set   
org.omnaest.utils.structure.element.filter   
org.omnaest.utils.structure.map   
 

Uses of ElementFilter in org.omnaest.utils.structure.collection.list
 

Methods in org.omnaest.utils.structure.collection.list with parameters of type ElementFilter
static
<E> List<E>
ListUtils.filter(Collection<E> collection, ElementFilter<E> elementFilter)
          Returns a filtered List using a ElementFilter on the given Collection
static
<E> List<E>
ListUtils.filter(Iterable<E> iterable, ElementFilter<E> elementFilter)
          Returns a filtered List using a ElementFilter on the given Iterable
 

Uses of ElementFilter in org.omnaest.utils.structure.collection.set
 

Methods in org.omnaest.utils.structure.collection.set with parameters of type ElementFilter
static
<E> Set<E>
SetUtils.filter(Iterable<E> iterable, ElementFilter<E> elementFilter)
          Filters the given Iterable and returns a Set which only contains the elements which are not filtered out by the given ElementFilter.
 

Uses of ElementFilter in org.omnaest.utils.structure.element.filter
 

Classes in org.omnaest.utils.structure.element.filter that implement ElementFilter
 class ElementFilterNotBlank
          ExcludingElementFilter which filters / removes all blank elements.
 class ExcludingElementFilter<E>
          Abstract implementation of the ElementFilter which returns ElementFilter.FilterMode.EXCLUDING for the ExcludingElementFilter.getFilterMode() method
 class ExcludingElementFilterConstant<E>
          ExcludingElementFilter which removes all given elements where the constructor element equals to.
 class ExcludingElementFilterNotNull<E>
          ExcludingElementFilter which filters / removes all null elements
 

Uses of ElementFilter in org.omnaest.utils.structure.map
 

Methods in org.omnaest.utils.structure.map with parameters of type ElementFilter
static
<K,V> Map<K,V>
MapUtils.filteredMap(Map<K,V> map, ElementFilter<K> keyElementFilter)
          Returns a new filtered Map instance.
 



Copyright © 2013. All Rights Reserved.