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
/Matchers
for 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 aTextFilterator
that searches the given JavaBean properties of the specified class.static <D,E>
Filterator<D,E>GlazedLists. filterator(java.lang.String... propertyNames)
Creates aTextFilterator
that 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 aMatcher
that uses the givenfilterator
to extractComparable
objects from filtered objects and compares those Comparables against the range between the givenstart
andend
.Constructors in ca.odell.glazedlists.matchers with parameters of type Filterator Constructor Description RangeMatcherEditor(Filterator<D,E> filterator)
Creates aRangeMatcherEditor
that matches Objects using the specifiedFilterator
to get theComparable
s to search.
-