Interface ReportResultSet
- 
 public interface ReportResultSetRow Result of a report execution.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description BigDecimalgetBigDecimal(int column)Get the value of the specified numeric column.Map<String,Object>getFormatParameters()Get the parameters used for formatting.intgetInt(int column)Get the value of the specified numeric column.longgetLong(int column)Get the value of the specified Long column.longgetLong(String columnName)Get the value of the specified Long column.ReportResultSetMetaDatagetMetaData()Get the meta data for this result set.StringgetString(int column)Get the value of the specified String column.booleanwasNull()Was the previous call to getLong() or getString() a null?
 
- 
- 
- 
Method Detail- 
getMetaDataReportResultSetMetaData getMetaData() throws SQLException Get the meta data for this result set.- Returns:
- the meta data.
- Throws:
- SQLException- if an error occurs.
 
 - 
getStringString getString(int column) throws SQLException Get the value of the specified String column.- Parameters:
- column- the column index (1 based).
- Returns:
- the value.
- Throws:
- SQLException- if an error occurs.
 
 - 
getLonglong getLong(int column) throws SQLExceptionGet the value of the specified Long column.- Parameters:
- column- the column index (1 based).
- Returns:
- the value.
- Throws:
- SQLException- if an error occurs.
 
 - 
wasNullboolean wasNull() throws SQLExceptionWas the previous call to getLong() or getString() a null?- Returns:
- true if it was, false otherwise.
- Throws:
- SQLException
 
 - 
getLonglong getLong(String columnName) throws SQLException Get the value of the specified Long column.- Parameters:
- columnName- the column name.
- Returns:
- the value.
- Throws:
- SQLException- if an error occurs.
 
 - 
getBigDecimalBigDecimal getBigDecimal(int column) throws SQLException Get the value of the specified numeric column.- Parameters:
- column- the column index (1 based).
- Returns:
- the value.
- Throws:
- SQLException- if an error occurs.
 
 - 
getIntint getInt(int column) throws SQLExceptionGet the value of the specified numeric column.- Parameters:
- column- the column index (1 based).
- Returns:
- the value.
- Throws:
- SQLException- if an error occurs.
 
 
- 
 
-