Module is.codion.swing.common.ui
Interface FilterTableSearchModel.Results.SelectResult
- Enclosing interface:
FilterTableSearchModel.Results
public static interface FilterTableSearchModel.Results.SelectResult
Selects search results
-
Method Summary
Modifier and TypeMethodDescriptionaddNext()Finds the next value and adds the row to the selectionFinds the previous value and adds the row to the selectionnext()Finds the next value and selects the row, if none is found the selection is clearedprevious()Finds the previous value and selects the row, if none is found the selection is cleared
-
Method Details
-
next
Finds the next value and selects the row, if none is found the selection is cleared- Returns:
- the row and column of the next item fitting the search condition, an empty Optional if none is found
-
addNext
Optional<FilterTableSearchModel.RowColumn> addNext()Finds the next value and adds the row to the selection- Returns:
- the row and column of the next item fitting the search condition, an empty Optional if none is found
-
previous
Optional<FilterTableSearchModel.RowColumn> previous()Finds the previous value and selects the row, if none is found the selection is cleared- Returns:
- the row and column of the previous item fitting the search condition, an empty Optional if none is found
-
addPrevious
Optional<FilterTableSearchModel.RowColumn> addPrevious()Finds the previous value and adds the row to the selection- Returns:
- the row and column of the previous item fitting the search condition, an empty Optional if none is found
-