Package org.apache.jorphan.collections
Class Data
java.lang.Object
org.apache.jorphan.collections.Data
- All Implemented Interfaces:
- Serializable
Use this class to store database-like data. This class uses rows and columns
 to organize its data. It has some convenience methods that allow fast loading
 and retrieval of the data into and out of string arrays. It is also handy for
 reading CSV files.
 WARNING: the class assumes that column names are unique, but does not enforce this.
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddColumnValue(String column, Object value) Adds a value into the Data set at the current row, using a column name to find the column in which to insert the new value.voidAdds a header name to the Data object.voidaddRow()voidAdds the rows of the given Data object to this Data object.intReturns the row number where a certain value is.String[]This method will retrieve every entry in a certain column.getColumnAsObjectArray(String columnName) This method will retrieve every entry in a certain column.getColumnValue(int column) Gets the value in the current row of the given column.getColumnValue(int column, int row) getColumnValue(String column) Gets the value in the current row of the given column.intGet the number of the current row.String[]Returns all the data in the Data set as an array of strings.intString[]Returns a String array of the column headers.booleanChecks to see if a column exists in the Data object.booleannext()Sets the current position of the Data set to the next row.booleanprevious()Sets the current position of the Data set to the previous row.voidremoveColumn(int col) voidRemoves the current row.voidremoveRow(int index) voidreplaceHeader(String oldHeader, String newHeader) Replaces the given header name with a new header name.voidreset()Resets the current position of the data set to just before the first element.voidsetColumnData(int col, List<?> data) voidsetColumnData(String colName, Object value) Sets the data for every row in the column.voidsetColumnValue(String column, Object value) Sets the value in the Data set at the current row, using a column name to find the column in which to insert the new value.voidsetCurrentPos(int r) Sets the current pos.voidUse this method to set the entire data set.voidsetHeaders(String[] h) Sets the headers for the data set.voidSets a row of data using an array of strings as input.voidSets a row of data using an array of strings as input.intsize()Gets the number of rows in the Data object.voidSorts the data using a given row as the sorting criteria.toString()
- 
Constructor Details- 
Datapublic Data()Constructor - takes no arguments.
 
- 
- 
Method Details- 
replaceHeaderReplaces the given header name with a new header name.- Parameters:
- oldHeader- Old header name.
- newHeader- New header name.
 
- 
appendAdds the rows of the given Data object to this Data object.- Parameters:
- d- data object to be appended to this one
 
- 
getCurrentPospublic int getCurrentPos()Get the number of the current row.- Returns:
- integer representing the current row
 
- 
removeRowpublic void removeRow()Removes the current row.
- 
removeRowpublic void removeRow(int index) 
- 
addRowpublic void addRow()
- 
setCurrentPospublic void setCurrentPos(int r) Sets the current pos. If value sent to method is not a valid number, the current position is set to one higher than the maximum.- Parameters:
- r- position to set to.
 
- 
sortSorts the data using a given row as the sorting criteria. A boolean value indicates whether to sort ascending or descending.- Parameters:
- column- name of column to use as sorting criteria.
 
- 
sizepublic int size()Gets the number of rows in the Data object.- Returns:
- number of rows in Data object.
 
- 
addColumnValueAdds a value into the Data set at the current row, using a column name to find the column in which to insert the new value.- Parameters:
- column- the name of the column to set.
- value- value to set into column.
 
- 
findValueReturns the row number where a certain value is.- Parameters:
- column- column to be searched for value.
- value- object in Search of.
- Returns:
- row # where value exists.
 
- 
setColumnValueSets the value in the Data set at the current row, using a column name to find the column in which to insert the new value.- Parameters:
- column- the name of the column to set.
- value- value to set into column.
 
- 
hasHeaderChecks to see if a column exists in the Data object.- Parameters:
- column- Name of column header to check for.
- Returns:
- True or False depending on whether the column exists.
 
- 
nextpublic boolean next()Sets the current position of the Data set to the next row.- Returns:
- True if there is another row. False if there are no more rows.
 
- 
previouspublic boolean previous()Sets the current position of the Data set to the previous row.- Returns:
- True if there is another row. False if there are no more rows.
 
- 
resetpublic void reset()Resets the current position of the data set to just before the first element.
- 
getColumnValueGets the value in the current row of the given column.- Parameters:
- column- name of the column.
- Returns:
- an Object which holds the value of the column.
 
- 
getColumnValueGets the value in the current row of the given column.- Parameters:
- column- index of the column (starts at 0).
- Returns:
- an Object which holds the value of the column.
 
- 
getColumnValue
- 
removeColumnpublic void removeColumn(int col) 
- 
setHeadersSets the headers for the data set. Each header represents a column of data. Each row's data can be gotten with the column header name, which will always be a string.- Parameters:
- h- array of strings representing the column headers. these must be distinct - duplicates will cause incorrect behaviour
 
- 
getHeadersReturns a String array of the column headers.- Returns:
- array of strings of the column headers.
 
- 
getHeaderCountpublic int getHeaderCount()
- 
getColumnAsObjectArrayThis method will retrieve every entry in a certain column. It returns an array of Objects from the column.- Parameters:
- columnName- name of the column.
- Returns:
- array of Objects representing the data.
 
- 
getColumnThis method will retrieve every entry in a certain column. It returns an array of strings from the column. Even if the data are not strings, they will be returned as strings in this method.- Parameters:
- columnName- name of the column.
- Returns:
- array of Strings representing the data.
 
- 
setDataUse this method to set the entire data set. It takes an array of strings. It uses the first row as the headers, and the next rows as the data elements. Delimiter represents the delimiting character(s) that separate each item in a data row.- Parameters:
- contents- array of strings, the first element is a list of the column headers, the next elements each represent a single row of data.
- delimiter- the delimiter character that separates columns within the string array.
 
- 
setColumnDataSets the data for every row in the column.- Parameters:
- colName- name of the column
- value- value to be set
 
- 
setColumnData
- 
addHeaderAdds a header name to the Data object.- Parameters:
- s- name of header.
 
- 
setLineSets a row of data using an array of strings as input. Each value in the array represents a column's value in that row. Assumes the order will be the same order in which the headers were added to the data set.- Parameters:
- line- array of strings representing column values.
 
- 
setLineSets a row of data using an array of strings as input. Each value in the array represents a column's value in that row. Assumes the order will be the same order in which the headers were added to the data set.- Parameters:
- line- array of strings representing column values.
- deflt- default value to be placed in data if line is not as long as headers.
 
- 
getDataAsTextReturns all the data in the Data set as an array of strings. Each array gives a row of data, each column separated by tabs.- Returns:
- array of strings.
 
- 
toString
 
-