Package it.tidalwave.util
Interface Finder.SortCriterion
-
- All Known Subinterfaces:
Finder.InMemorySortCriterion<U>
- All Known Implementing Classes:
Finder.InMemorySortCriterion.DefaultInMemorySortCriterion
public static interface Finder.SortCriterion
A tag interface to mark objects which are meaningful sort criteria that can be passed toFinder.sort(it.tidalwave.util.Finder.SortCriterion)
. In general, aSortCriterion
is just a behaviourless and methodless object, that should be specifically handled by concrete implementations ofFinder
. The only exceptions areFinder.InMemorySortCriterion
objects.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.Class<Finder.SortCriterion>
_SortCriterion_
static Finder.SortCriterion
DEFAULT
static Finder.SortCriterion
UNSORTED
A specialFinder.SortCriterion
which indicates that no sort has been performed.
-
-
-
Field Detail
-
_SortCriterion_
static final java.lang.Class<Finder.SortCriterion> _SortCriterion_
-
UNSORTED
static final Finder.SortCriterion UNSORTED
A specialFinder.SortCriterion
which indicates that no sort has been performed.
-
DEFAULT
static final Finder.SortCriterion DEFAULT
-
-