Uses of Interface
org.knowceans.util.TableList.Filter

Packages that use TableList.Filter
org.knowceans.util   
 

Uses of TableList.Filter in org.knowceans.util
 

Classes in org.knowceans.util that implement TableList.Filter
 class TableList.FieldBetween
          FieldBetween checks if the field is between low and high value.
 class TableList.FieldEquals
          FieldEquals is an equals condition
 class TableList.FieldGreaterThan
          FieldLargerThan checks if field larger than value.
 class TableList.FieldLessThan
          FieldLessThan checks if field less than.
 class TableList.FieldRegexFind
          FieldRegexFind matches field with the regular expression.
 class TableList.SingleFieldFilter
          SingleFieldFilter represents the common case of filtering according to the value of one field.
 

Methods in org.knowceans.util with parameters of type TableList.Filter
 TableList TableList.filter(TableList.Filter filt)
          Get a sublist of this list according to the filter criterion.
 int TableList.indexOf(TableList.Filter filt)
          Find the first index valid for the filter.
 int[] TableList.indicesOf(TableList.Filter filt)
          Find all indices that are valid for the filter.
 int TableList.lastIndexOf(TableList.Filter filt)
          Find the last index that is valid for the filter.
 TableList[] TableList.split(TableList.Filter filt)
          Get two sublists of this list according to the filter criterion.