Uses of Interface
ca.odell.glazedlists.Filterator
-
Packages that use Filterator Package Description ca.odell.glazedlists ca.odell.glazedlists.matchers Implementations and classes useful for creating implementations ofMatcherEditor/Matchersfor use withFilterLists. -
-
Uses of Filterator in ca.odell.glazedlists
Methods in ca.odell.glazedlists that return Filterator Modifier and Type Method Description static <D,E>
Filterator<D,E>GlazedLists. filterator(java.lang.Class<E> beanClass, java.lang.String... propertyNames)Creates aTextFilteratorthat searches the given JavaBean properties of the specified class.static <D,E>
Filterator<D,E>GlazedLists. filterator(java.lang.String... propertyNames)Creates aTextFilteratorthat searches the given JavaBean properties. -
Uses of Filterator in ca.odell.glazedlists.matchers
Methods in ca.odell.glazedlists.matchers that return Filterator Modifier and Type Method Description Filterator<D,E>RangeMatcherEditor. getFilterator()Get the filterator used to extract Comparables from the matched elements.Methods in ca.odell.glazedlists.matchers with parameters of type Filterator Modifier and Type Method Description static <D extends java.lang.Comparable,E>
Matcher<E>Matchers. rangeMatcher(D start, D end, Filterator<D,E> filterator)Creates aMatcherthat uses the givenfilteratorto extractComparableobjects from filtered objects and compares those Comparables against the range between the givenstartandend.Constructors in ca.odell.glazedlists.matchers with parameters of type Filterator Constructor Description RangeMatcherEditor(Filterator<D,E> filterator)Creates aRangeMatcherEditorthat matches Objects using the specifiedFilteratorto get theComparables to search.
-