Package org.apache.jackrabbit.spi
Interface QueryInfo
-
public interface QueryInfo
QueryInfo
is the the return value ofRepositoryService.executeQuery(SessionInfo, String, String, Map, long, long, Map)
which is used to run a query on theRepositoryService
. It provides access to the rows of the query result as well as to the column names.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]
getColumnNames()
RangeIterator
getRows()
java.lang.String[]
getSelectorNames()
-
-
-
Method Detail
-
getRows
RangeIterator getRows()
- Returns:
- an iterator over the
QueryResultRow
s. - See Also:
QueryResult.getRows()
-
getColumnNames
java.lang.String[] getColumnNames()
- Returns:
- an array of
String
s representing the column names of the query result. - See Also:
QueryResult.getColumnNames()
-
getSelectorNames
java.lang.String[] getSelectorNames()
- Returns:
- an array of
String
s representing the selector names of the query result. - See Also:
QueryResult.getSelectorNames()
-
-