Interface SortingParameter.Setter
- All Known Subinterfaces:
SortingParameter.Builder
- Enclosing interface:
- SortingParameter
public static interface SortingParameter.Setter
- Since:
- 3.9.2
-
Method Summary
Modifier and TypeMethodDescriptionbyLuceneSortString
(String value) Sets the sorting by String value which can be used inDataSetAccessor.sort(String)
, see that method for details.PrototypeSelector<? extends SortingParameter.Setter>
Clears the subtype set bysubtype(String)
, so this method must be used before usingsubtype(String)
.ScopeSelector<? extends SortingParameter.Setter>
scope()
Not using this method means to use the current scope.Must be used afterprototype()
otherwise the value is lost.
-
Method Details
-
scope
Not using this method means to use the current scope.- Since:
- 3.9.3
-
prototype
Clears the subtype set bysubtype(String)
, so this method must be used before usingsubtype(String)
.- Since:
- 3.9.3
-
subtype
Must be used afterprototype()
otherwise the value is lost.- Since:
- 3.9.3
-
byLuceneSortString
Sets the sorting by String value which can be used inDataSetAccessor.sort(String)
, see that method for details.
-