Uses of Interface
org.eobjects.metamodel.data.Row

Packages that use Row
org.eobjects.metamodel Root package for MetaModel 
org.eobjects.metamodel.data API for data sets 
org.eobjects.metamodel.delete API for deleting rows 
org.eobjects.metamodel.insert API for inserting rows 
org.eobjects.metamodel.query API for querying 
 

Uses of Row in org.eobjects.metamodel
 

Methods in org.eobjects.metamodel that return Row
static Row MetaModelHelper.executeSingleRowQuery(DataContext dataContext, Query query)
          Executes a single row query, like "SELECT COUNT(*), MAX(SOME_COLUMN) FROM MY_TABLE" or similar.
 Row InconsistentRowFormatException.getProposedRow()
          Gets the row as MetaModel would gracefully interpret it.
 

Methods in org.eobjects.metamodel that return types with arguments of type Row
protected  List<Row> DeleteAndInsertBuilder.getRowsToUpdate()
           
static List<Row> MetaModelHelper.readDataSetFull(DataSet dataSet)
           
 

Constructors in org.eobjects.metamodel with parameters of type Row
InconsistentRowFormatException(Row proposedRow, int rowNumber)
           
InconsistentRowFormatException(Row proposedRow, int rowNumber, Exception cause)
           
 

Uses of Row in org.eobjects.metamodel.data
 

Classes in org.eobjects.metamodel.data that implement Row
 class AbstractRow
          An abstract row that decorates another row.
 class DefaultRow
          Default Row implementation.
 

Methods in org.eobjects.metamodel.data that return Row
protected  Row AbstractRow.clone()
           
 Row SubSelectionDataSet.getRow()
           
 Row RowPublisherDataSet.getRow()
           
 Row MaxRowsDataSet.getRow()
           
 Row InMemoryDataSet.getRow()
           
 Row FirstRowDataSet.getRow()
           
 Row FilteredDataSet.getRow()
           
 Row EmptyDataSet.getRow()
           
 Row DataSet.getRow()
           
 Row Row.getSubSelection(DataSetHeader header)
          Creates a row similar to this one but only with a subset of the values.
 Row AbstractRow.getSubSelection(DataSetHeader header)
           
 Row Row.getSubSelection(SelectItem[] selectItems)
          Deprecated. use getSubSelection(DataSetHeader) instead.
 Row AbstractRow.getSubSelection(SelectItem[] selectItems)
           
 Row DataSetIterator.next()
           
 Row RowBuilder.toRow()
          Gets the built record represented as a Row object.
 Row AbstractRowBuilder.toRow()
           
 

Methods in org.eobjects.metamodel.data that return types with arguments of type Row
 List<Row> InMemoryDataSet.getRows()
           
 Iterator<Row> DataSet.iterator()
          Converts the DataSet into an Iterator.
 Iterator<Row> AbstractDataSet.iterator()
          Converts the DataSet into an Iterator.
 List<Row> DataSet.toRows()
          Converts the DataSet into a list of rows (will load all rows into memory)
 List<Row> AbstractDataSet.toRows()
           
 

Methods in org.eobjects.metamodel.data with parameters of type Row
 boolean IRowFilter.accept(Row row)
          Filters a row
 boolean RowPublisher.publish(Row row)
          Publishes a row
 

Constructors in org.eobjects.metamodel.data with parameters of type Row
InMemoryDataSet(DataSetHeader header, Row... rows)
           
InMemoryDataSet(Row... rows)
           
 

Constructor parameters in org.eobjects.metamodel.data with type arguments of type Row
InMemoryDataSet(DataSetHeader header, List<Row> rows)
           
InMemoryDataSet(List<Row> rows)
           
 

Uses of Row in org.eobjects.metamodel.delete
 

Methods in org.eobjects.metamodel.delete with parameters of type Row
protected  boolean AbstractRowDeletionBuilder.deleteRow(Row row)
          Determines if a row should be deleted or not (can be used by subclasses as a convenient determinator).
 

Uses of Row in org.eobjects.metamodel.insert
 

Methods in org.eobjects.metamodel.insert with parameters of type Row
 RowInsertionBuilder RowInsertionBuilder.like(Row row)
          Sets all values like the provided row (for easy duplication of a row).
 RowInsertionBuilder AbstractRowInsertionBuilder.like(Row row)
           
 

Uses of Row in org.eobjects.metamodel.query
 

Methods in org.eobjects.metamodel.query with parameters of type Row
 boolean FilterItem.accept(Row row)
           
 boolean FilterItem.evaluate(Row row)
          Does a "manual" evaluation, useful for CSV data and alike, where queries cannot be created.
 



Copyright © 2007-2013. All Rights Reserved.