Interface SearchableTable

    • Method Detail

      • getActualRow

        int getActualRow​(int rowIndex)
        Returns the actual row in the model.
        Parameters:
        rowIndex - the row of the currently displayed data
        Returns:
        the row in the underlying data
      • getActualRowCount

        int getActualRowCount()
        Returns the actual row count in the model.
        Returns:
        the row count in the underlying data
      • search

        void search​(String searchString,
                    boolean regexp)
        Performs a search for the given string. Limits the display of rows to ones containing the search string.
        Parameters:
        searchString - the string to search for
        regexp - whether to perform regular expression matching or just plain string comparison
      • getSeachString

        String getSeachString()
        Returns the current search string.
        Returns:
        the search string, null if not filtered
      • isRegExpSearch

        boolean isRegExpSearch()
        Returns whether the last search was a regular expression based one.
        Returns:
        true if last search was a reg exp one