public interface BinFileMultCol
| Modifier and Type | Method and Description |
|---|---|
java.util.List |
getData(java.lang.Integer wordNr)
For a given number returns the row
|
java.util.List |
getData(java.lang.Integer number,
int maxItems)
Returns the data for the given number up to the given maximum.
|
java.util.List |
getData(java.lang.Integer number,
int myColumns,
int maxItems)
Returns the data for the given number up to the given maximum.
|
java.util.List |
getData(java.lang.Integer number,
int maxItems,
int[] minCols,
int[] maxCols)
Returns the data for the given number up to the given maximum in a list.
|
java.util.List |
getData(java.lang.Integer number,
int myColumns,
int maxItems,
int[] minCols,
int[] maxCols)
Returns the data for the given number up to the given maximum.
|
java.util.Map |
getDataAsMap(java.lang.Integer wordNr)
Returns the data for the given number up to the given maximum in a map.
|
java.util.Map |
getDataAsMap(java.lang.Integer number,
int maxItems)
Returns the data for the given number up to the given maximum in a map.
|
java.util.Map |
getDataAsMap(java.lang.Integer number,
int myColumns,
int maxItems)
Returns the data for the given number up to the given maximum.
|
java.util.Map |
getDataAsMap(java.lang.Integer number,
int maxItems,
int[] minCols,
int[] maxCols)
Returns the data for the given number up to the given maximum in a map.
|
java.util.Map |
getDataAsMap(java.lang.Integer number,
int myColumns,
int maxItems,
int[] minCols,
int[] maxCols)
Returns the data for the given number up to the given maximum in a map.
|
java.util.List |
getSingleColumn(java.lang.Integer number,
int col)
Column here is the column in the initial datafile, count begins with 1.
|
java.util.List |
getSingleColumn(java.lang.Integer number,
int maxItems,
int col) |
java.util.List getData(java.lang.Integer wordNr)
wordNr - Integerjava.util.List getData(java.lang.Integer number,
int maxItems)
wordNr - maxItems - java.util.List getData(java.lang.Integer number,
int myColumns,
int maxItems)
number - = the first columnmyColumns - = how many columns to returnmaxItems - = at max this count of itemsjava.util.List getData(java.lang.Integer number,
int myColumns,
int maxItems,
int[] minCols,
int[] maxCols)
number - = the first columnmyColumns - = how many columns to returnmaxItems - = at max this count of itemsminCols - = for each column each value minimum is specified heremaxCols - = for each column each value maximum is specified herejava.util.List getData(java.lang.Integer number,
int maxItems,
int[] minCols,
int[] maxCols)
wordNr - The number of the item of which to return the columnsmaxItems - How many items to return at maxminCols - for each column the minimum allowed value (the whoe row will
otherwise be omitted)maxCols - for each column the maximum allowed value (the whoe row will
otherwise be omitted)java.util.Map getDataAsMap(java.lang.Integer wordNr)
wordNr - The number of the item of which to return the columnsjava.util.Map getDataAsMap(java.lang.Integer number,
int myColumns,
int maxItems)
wordNr - The number of the item of which to return the columnsmyColumns - How many columns to returnmaxItems - How many items to return at maxjava.util.Map getDataAsMap(java.lang.Integer number,
int maxItems)
wordNr - The number of the item of which to return the columnsmaxItems - How many items to return at maxjava.util.Map getDataAsMap(java.lang.Integer number,
int myColumns,
int maxItems,
int[] minCols,
int[] maxCols)
wordNr - The number of the item of which to return the columnsmyColumns - How many columns to returnmaxItems - How many items to return at maxminCols - for each column the minimum allowed value (the whoe row will
otherwise be omitted)maxCols - for each column the maximum allowed value (the whoe row will
otherwise be omitted)java.util.Map getDataAsMap(java.lang.Integer number,
int maxItems,
int[] minCols,
int[] maxCols)
wordNr - The number of the item of which to return the columnsmyColumns - How many columns to returnmaxItems - How many items to return at max
otherwise be omitted)maxCols - for each column the maximum allowed value (the whoe row will
otherwise be omitted)java.util.List getSingleColumn(java.lang.Integer number,
int col)
number - col - java.util.List getSingleColumn(java.lang.Integer number,
int maxItems,
int col)