org.alfresco.service.cmr.search
Interface ResultSetMetaData


public interface ResultSetMetaData

Meta Data associated with a result set.


Method Summary
 ResultSetColumn getColumn(java.lang.String name)
          Get the column meta-data by column name.
 java.lang.String[] getColumnNames()
          Get the column names.
 ResultSetColumn[] getColumns()
          The column meta-data.
 LimitBy getLimitedBy()
          Return how, in fact, the result set was limited.
 PermissionEvaluationMode getPermissionEvaluationMode()
          Return how permission evaluations are being made.
 ResultSetType getResultSetType()
          Get the result set type
 SearchParameters getSearchParameters()
          Get the parameters that were specified to define this search.
 ResultSetSelector getSelector(java.lang.String name)
          Get the selector meta-data by name.
 java.lang.String[] getSelectorNames()
          Get the names of the selectors.
 ResultSetSelector[] getSelectors()
          The selector meta-data.
 

Method Detail

getLimitedBy

LimitBy getLimitedBy()
Return how, in fact, the result set was limited. This may not be how it was requested. If a limit of 100 were requested and there were 100 or less actual results this will report LimitBy.UNLIMITED.

Returns:

getPermissionEvaluationMode

PermissionEvaluationMode getPermissionEvaluationMode()
Return how permission evaluations are being made.

Returns:

getSearchParameters

SearchParameters getSearchParameters()
Get the parameters that were specified to define this search.

Returns:

getResultSetType

ResultSetType getResultSetType()
Get the result set type

Returns:

getSelectors

ResultSetSelector[] getSelectors()
The selector meta-data.

Returns:
- the selector meta-data.

getColumns

ResultSetColumn[] getColumns()
The column meta-data.

Returns:
- the column meta-data.

getSelectorNames

java.lang.String[] getSelectorNames()
Get the names of the selectors.

Returns:
- the selector names.

getColumnNames

java.lang.String[] getColumnNames()
Get the column names.

Returns:
- the names of the columns.

getSelector

ResultSetSelector getSelector(java.lang.String name)
Get the selector meta-data by name.

Parameters:
name -
Returns:
- the selector meta-data.

getColumn

ResultSetColumn getColumn(java.lang.String name)
Get the column meta-data by column name.

Parameters:
name -
Returns:
- the column meta-data.


Copyright © 2005 - 2010 Alfresco Software, Inc. All Rights Reserved.