Uses of Class
org.knowceans.util.TableList

Packages that use TableList
org.knowceans.util   
 

Uses of TableList in org.knowceans.util
 

Subclasses of TableList in org.knowceans.util
 class KeyTableList
          KeyTableList is a table list that allows to define indices on fields called keys.
 

Methods in org.knowceans.util that return TableList
 TableList TableList.filter(TableList.Filter filt)
          Get a sublist of this list according to the filter criterion.
 TableList TableList.getSubList(int fromIndex, int toIndex)
          Get a sublist of this list according to the indices of the current sorting, as a copy.
 TableList KeyTableList.indicesOfRegex(java.lang.String keyfield, java.lang.String regex)
          Find all rows that match the string field as a regular expression.
static TableList TableList.load(java.lang.String file)
          Initialise the table list from the file.
 TableList TableList.sort(java.util.Comparator<TableList.Fields> comp)
          Sort the table with the specific comparator given.
 TableList TableList.sort(java.lang.String field, boolean reverse)
          Sort the table list by the specified field.
 TableList[] TableList.split(TableList.Filter filt)
          Get two sublists of this list according to the filter criterion.
 

Constructors in org.knowceans.util with parameters of type TableList
KeyTableList(TableList list)
           
TableList(TableList list)
          Copy constructor.