Uses of Interface
it.tidalwave.util.Finder
-
Packages that use Finder Package Description it.tidalwave.util it.tidalwave.util.spi -
-
Uses of Finder in it.tidalwave.util
Methods in it.tidalwave.util that return Finder Modifier and Type Method Description static <T> Finder<T>
Finder. empty()
Returns an emptyFinder
.Finder<TYPE>
Finder. from(int firstResult)
Tells theFinder
that only a subset of found items will be returned, starting from the given position.Finder<TYPE>
Finder. max(int maxResults)
Tells theFinder
that only a maximum number of found items will be returned.static <T> Finder<T>
Finder. ofCloned(java.util.Collection<T> items)
Returns a wrappedFinder
on a given collection of elements.default <ANOTHER_TYPE>
Finder<ANOTHER_TYPE>Finder. ofType(java.lang.Class<ANOTHER_TYPE> type)
Tells theFinder
that the specified type of results is expected.default Finder<TYPE>
Finder. sort(Finder.SortCriterion criterion)
Tells theFinder
that results will be sorted according to the given criterion, in ascending direction.Finder<TYPE>
Finder. sort(Finder.SortCriterion criterion, Finder.SortDirection direction)
Tells theFinder
that results will be sorted according to the given criterion and direction.default Finder<TYPE>
Finder. withContext(java.lang.Object context)
Tells theFinder
that results should be created with the given context. -
Uses of Finder in it.tidalwave.util.spi
Classes in it.tidalwave.util.spi with type parameters of type Finder Modifier and Type Interface Description interface
ExtendedFinderSupport<TYPE,EXTENDED_FINDER extends Finder<TYPE>>
A utility interface for creating extendedFinder
s, it provides automatic covariant return types.class
HierarchicFinderSupport<TYPE,EXTENDED_FINDER extends Finder<TYPE>>
A support class for implementing aFinder
.Subinterfaces of Finder in it.tidalwave.util.spi Modifier and Type Interface Description interface
ExtendedFinderSupport<TYPE,EXTENDED_FINDER extends Finder<TYPE>>
A utility interface for creating extendedFinder
s, it provides automatic covariant return types.Classes in it.tidalwave.util.spi that implement Finder Modifier and Type Class Description class
HierarchicFinderSupport<TYPE,EXTENDED_FINDER extends Finder<TYPE>>
A support class for implementing aFinder
.class
SimpleFinderSupport<T>
A starting point for implementing a customFinder
that is not an extended finder.Methods in it.tidalwave.util.spi that return Finder Modifier and Type Method Description <ANOTHER_TYPE>
Finder<ANOTHER_TYPE>HierarchicFinderSupport. ofType(java.lang.Class<ANOTHER_TYPE> type)
Tells theFinder
that the specified type of results is expected.
-