Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle WebCenter
11g Release 1 (11.1.1.4.0)
E15995-03


oracle.webcenter.search
Interface Row

All Known Implementing Classes:
ResultSetRow

public interface Row

The modeling of a row of columns of result. Each row must be able to return an object given a column name, in a way similar to how a java.util.Map would act.

Since:
11.1.1.0.0 Beta 2

Method Summary
 java.util.Iterator<QName> getColumns()
          Returns the list of all the columns that are present in this Row.
 java.lang.Object getObject(QName columnName)
          Returns the value of a column by giving the name - each column is represented by a name.

 

Method Detail

getObject

java.lang.Object getObject(QName columnName)
Returns the value of a column by giving the name - each column is represented by a name.
Parameters:
columnName - a QName specifying a column in the row we seek
Returns:
the Object value of the column

getColumns

java.util.Iterator<QName> getColumns()
Returns the list of all the columns that are present in this Row. This is an introspection method that allows for discovery at the time of rendering the results. Otherwise, there are no starting points to tell us what column names we can use to call getObject
Returns:
an Iterator of QName objects that each represent a column name.
See Also:
getObject(oracle.webcenter.search.QName)

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle WebCenter
11g Release 1 (11.1.1.4.0)
E15995-03


Copyright © 2009, 2011, Oracle and/or its affiliates. All rights reserved.