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 Finder<TYPE>Finder. from(int firstResult)Tells theFinderthat only a subset of found items will be returned, starting from the given position.Finder<TYPE>Finder. max(int maxResults)Tells theFinderthat only a maximum number of found items will be returned.<AnotherType>
Finder<AnotherType>Finder. ofType(Class<AnotherType> type)Tells theFinderthat the specified type of results is expected.Finder<TYPE>Finder. sort(Finder.SortCriterion criterion)Tells theFinderthat results will be sorted according to the given criterion, in ascending direction.Finder<TYPE>Finder. sort(Finder.SortCriterion criterion, Finder.SortDirection direction)Tells theFinderthat results will be sorted according to the given criterion and direction.Finder<TYPE>Finder. withContext(Object context)Tells theFinderthat 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 interfaceExtendedFinderSupport<TYPE,EXTENDED_FINDER extends Finder<TYPE>>A utility interface for creating extendedFinders, it provides automatic covariant return types.classFinderSupport<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 interfaceExtendedFinderSupport<TYPE,EXTENDED_FINDER extends Finder<TYPE>>A utility interface for creating extendedFinders, it provides automatic covariant return types.Classes in it.tidalwave.util.spi that implement Finder Modifier and Type Class Description classArrayListFinder<T>An implementation ofFinderwhich holds an immutable list of items.classFinderSupport<TYPE,EXTENDED_FINDER extends Finder<TYPE>>A support class for implementing aFinder.classSimpleFinderSupport<T>Methods in it.tidalwave.util.spi that return Finder Modifier and Type Method Description static <T> Finder<T>FinderSupport. emptyFinder()Returns an emptyFinder.<ANOTHER_TYPE>
Finder<ANOTHER_TYPE>FinderSupport. ofType(Class<ANOTHER_TYPE> type)Tells theFinderthat the specified type of results is expected.
-