Package | Description |
---|---|
org.jdesktop.swingx.search |
Modifier and Type | Field | Description |
---|---|---|
protected AbstractSearchable.SearchResult |
AbstractSearchable.lastSearchResult |
stores the result of the previous search.
|
static AbstractSearchable.SearchResult |
AbstractSearchable.NO_MATCH |
a constant representing not-found state.
|
Modifier and Type | Method | Description |
---|---|---|
protected AbstractSearchable.SearchResult |
AbstractSearchable.createSearchResult(java.util.regex.Matcher matcher,
int row,
int column) |
Factory method to create a SearchResult from the given parameters.
|
protected abstract AbstractSearchable.SearchResult |
AbstractSearchable.findExtendedMatch(java.util.regex.Pattern pattern,
int row) |
called if sameRowIndex && !hasEqualRegEx.
|
protected AbstractSearchable.SearchResult |
ListSearchable.findExtendedMatch(java.util.regex.Pattern pattern,
int row) |
|
protected AbstractSearchable.SearchResult |
TableSearchable.findExtendedMatch(java.util.regex.Pattern pattern,
int row) |
called if sameRowIndex && !hasEqualRegEx.
|
protected AbstractSearchable.SearchResult |
TreeSearchable.findExtendedMatch(java.util.regex.Pattern pattern,
int row) |
|
protected AbstractSearchable.SearchResult |
ListSearchable.findMatchAt(java.util.regex.Pattern pattern,
int row) |
Matches the cell content at row/col against the given Pattern.
|
protected AbstractSearchable.SearchResult |
TableSearchable.findMatchAt(java.util.regex.Pattern pattern,
int row,
int column) |
Matches the cell content at row/col against the given Pattern.
|
protected AbstractSearchable.SearchResult |
TreeSearchable.findMatchAt(java.util.regex.Pattern pattern,
int row) |
Matches the cell content at row/col against the given Pattern.
|
Modifier and Type | Method | Description |
---|---|---|
protected boolean |
ListSearchable.hasMatch(AbstractSearchable.SearchResult result) |
|
protected boolean |
TableSearchable.hasMatch(AbstractSearchable.SearchResult result) |
|
protected boolean |
TreeSearchable.hasMatch(AbstractSearchable.SearchResult result) |
|
void |
AbstractSearchable.SearchResult.updateFrom(AbstractSearchable.SearchResult searchResult) |
|
protected void |
AbstractSearchable.updateState(AbstractSearchable.SearchResult searchResult) |
Update inner searchable state based on provided search result
|