public interface FilteredTableSearchModel
FilteredTableModel
Modifier and Type | Interface and Description |
---|---|
static interface |
FilteredTableSearchModel.RowColumn
Holds a row/column coordinate
|
Modifier and Type | Method and Description |
---|---|
void |
addCurrentResultListener(EventDataListener<FilteredTableSearchModel.RowColumn> listener) |
State |
caseSensitiveSearchState() |
FilteredTableSearchModel.RowColumn |
currentResult() |
Optional<FilteredTableSearchModel.RowColumn> |
nextResult()
Finds the next value and selects the row, if none is found the selection is cleared
|
Optional<FilteredTableSearchModel.RowColumn> |
previousResult()
Finds the previous value and selects the row, if none is found the selection is cleared
|
State |
regularExpressionSearchState() |
Value<Predicate<String>> |
searchPredicateValue() |
List<FilteredTableSearchModel.RowColumn> |
searchResults() |
Value<String> |
searchStringValue() |
Optional<FilteredTableSearchModel.RowColumn> |
selectNextResult()
Finds the next value and adds the row to the selection
|
Optional<FilteredTableSearchModel.RowColumn> |
selectPreviousResult()
Finds the previous value and adds the row to the selection
|
State regularExpressionSearchState()
State caseSensitiveSearchState()
Value<Predicate<String>> searchPredicateValue()
Optional<FilteredTableSearchModel.RowColumn> nextResult()
Optional<FilteredTableSearchModel.RowColumn> selectNextResult()
Optional<FilteredTableSearchModel.RowColumn> previousResult()
Optional<FilteredTableSearchModel.RowColumn> selectPreviousResult()
List<FilteredTableSearchModel.RowColumn> searchResults()
FilteredTableSearchModel.RowColumn currentResult()
void addCurrentResultListener(EventDataListener<FilteredTableSearchModel.RowColumn> listener)
listener
- a listener notified each time the current search result changesnextResult()
,
previousResult()