Method Summary |
|
List<T> | collectColumn(int columnIndex) Projects a single column to a list. |
public int | getColumnCount() Returns the number of columns in this FxResultSet object. |
public int | getColumnIndex(String name) Get the index for the given column. |
public Map<String, Integer> | getColumnIndexMap() Returns a map returning the column index using the lowercase column name as a key. |
public String | getColumnName(int pos) Get the designated column's name. |
public String[] | getColumnNames() Returns the column names. |
public List<FxFoundType> | getContentTypes() Returns a list of all content types that are part of the resultset. |
public long | getCreatedBriefcaseId() If the query created a new briefcase, its ID can be retrieved with this method. |
public long | getCreationTime() Returns the time this resultset was created at. |
public int | getDbSearchTime() Returns the time needed to find all matching records in the database. |
public int | getFetchTime() Returns the time needed to find fetch the matching records from the database. |
public ResultLocation | getLocation() Returns the location for which the query was executed. |
public int | getMaxFetchRows() Returns the maximum rows parameter specified with the search. |
public Object | getObject(int rowIndex, int columnIndex) Retrieves the value of the designated column in the current row of this FxResultSet object as a
Object.
Parameters: rowIndex - - the first row is 1, the second is 2, ... Parameters: columnIndex - - the first column is 1, the second is 2, ... |
public int | getParserExecutionTime() Returns the time that was spent parsing the statement. |
public FxResultRow | getResultRow(int index) Return a result row wrapper for the given row number. |
public Iterable<FxResultRow> | getResultRows() Return a result row iterator for this result set. |
public int | getRowCount() Returns the number of rows in this FxResultSet object. |
public List<Object[]> | getRows() Returns all rows. |
public int | getStartIndex() Returns the start index specified with the search. |
public String | getString(int rowIndex, int columnIndex) Retrieves the value of the designated column in the current row of this FxResultSet object as a
String.
Parameters: rowIndex - - the first row is 1, the second is 2, ... Parameters: columnIndex - - the first column is 1, the second is 2, ... |
public int | getTotalRowCount() Returns the total row count. |
public int | getTotalTime() Returns the total time spent for the search. |
public ResultViewType | getViewType() Returns the view type for which the query was executed. |
public boolean | isTruncated() Returns true if the found entry set was truncted. |