Modifier and Type | Method and Description |
---|---|
protected Row |
QueryPostprocessDataContext.executePrimaryKeyLookupQuery(Table table,
List<SelectItem> selectItems,
Column primaryKeyColumn,
Object keyValue)
Executes a query which obtains a row by primary key (as defined by
Column.isPrimaryKey() ). |
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.
|
Modifier and Type | Method and Description |
---|---|
protected List<Row> |
DeleteAndInsertBuilder.getRowsToUpdate() |
static List<Row> |
MetaModelHelper.readDataSetFull(DataSet dataSet) |
Constructor and Description |
---|
InconsistentRowFormatException(Row proposedRow,
int rowNumber) |
InconsistentRowFormatException(Row proposedRow,
int rowNumber,
Exception cause) |
Modifier and Type | Method and Description |
---|---|
protected Row |
CassandraDataContext.executePrimaryKeyLookupQuery(Table table,
List<SelectItem> selectItems,
Column primaryKeyColumn,
Object keyValue) |
static Row |
CassandraUtils.toRow(com.datastax.driver.core.Row dbObject,
DataSetHeader header)
Converts a Cassandra Row data object
Row
into MetaModel Row . |
Modifier and Type | Method and Description |
---|---|
Row |
DocumentConverter.convert(Document document,
DataSetHeader header)
Converts a
Document into a row with the given
DataSetHeader . |
Modifier and Type | Method and Description |
---|---|
protected Row |
CouchDbDataContext.executePrimaryKeyLookupQuery(Table table,
List<SelectItem> selectItems,
Column primaryKeyColumn,
Object keyValue) |
Constructor and Description |
---|
InconsistentRowLengthException(int columnsInTable,
Row proposedRow,
String[] line,
int rowNumber) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractRow
An abstract row that decorates another row.
|
class |
DefaultRow
Default Row implementation.
|
Modifier and Type | Method and Description |
---|---|
protected Row |
AbstractRow.clone() |
Row |
UnionDataSet.getRow() |
Row |
SubSelectionDataSet.getRow() |
Row |
ScalarFunctionDataSet.getRow() |
Row |
RowPublisherDataSet.getRow() |
Row |
MaxRowsDataSet.getRow() |
Row |
InMemoryDataSet.getRow() |
Row |
FirstRowDataSet.getRow() |
Row |
FilteredDataSet.getRow() |
Row |
EmptyDataSet.getRow() |
Row |
DocumentSourceDataSet.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 |
DataSetIterator.next() |
Row |
RowBuilder.toRow()
Gets the built record represented as a
Row object. |
Row |
AbstractRowBuilder.toRow() |
Modifier and Type | Method and Description |
---|---|
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() |
Modifier and Type | Method and Description |
---|---|
boolean |
IRowFilter.accept(Row row)
Filters a row
|
boolean |
RowPublisher.publish(Row row)
Publishes a row
|
Constructor and Description |
---|
InMemoryDataSet(DataSetHeader header,
Row... rows) |
InMemoryDataSet(Row... rows) |
Constructor and Description |
---|
InMemoryDataSet(DataSetHeader header,
List<Row> rows) |
InMemoryDataSet(List<Row> rows) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
AbstractRowDeletionBuilder.deleteRow(Row row)
Determines if a row should be deleted or not (can be used by subclasses
as a convenient determinator).
|
Modifier and Type | Method and Description |
---|---|
protected Row |
DynamoDbDataContext.executePrimaryKeyLookupQuery(Table table,
List<SelectItem> selectItems,
Column primaryKeyColumn,
Object keyValue) |
Modifier and Type | Method and Description |
---|---|
Row |
AbstractElasticSearchDataSet.getRow() |
Modifier and Type | Method and Description |
---|---|
static Row |
ElasticSearchUtils.createRow(Map<String,Object> sourceMap,
String documentId,
DataSetHeader header) |
Modifier and Type | Method and Description |
---|---|
protected Row |
ElasticSearchDataContext.executePrimaryKeyLookupQuery(Table table,
List<SelectItem> selectItems,
Column primaryKeyColumn,
Object keyValue) |
Modifier and Type | Method and Description |
---|---|
protected Row |
ElasticSearchRestDataContext.executePrimaryKeyLookupQuery(Table table,
List<SelectItem> selectItems,
Column primaryKeyColumn,
Object keyValue) |
Constructor and Description |
---|
InconsistentValueWidthException(Row proposedRow,
InconsistentValueWidthException cause) |
Modifier and Type | Method and Description |
---|---|
protected Row |
HBaseDataContext.executePrimaryKeyLookupQuery(Table table,
List<SelectItem> selectItems,
Column primaryKeyColumn,
Object keyValue) |
Modifier and Type | Method and Description |
---|---|
RowInsertionBuilder |
RowInsertionBuilder.like(Row row)
Sets all values like the provided row (for easy duplication of a row).
|
RowInsertionBuilder |
AbstractRowInsertionBuilder.like(Row row) |
Modifier and Type | Method and Description |
---|---|
static Row |
MongoDBUtils.toRow(com.mongodb.DBObject dbObject,
DataSetHeader header)
Converts a MongoDB data object
DBObject into MetaModel
Row . |
static Row |
MongoDBUtils.toRow(Map<?,?> map,
DataSetHeader header)
Converts a map into MetaModel.
|
Modifier and Type | Method and Description |
---|---|
protected Row |
MongoDbDataContext.executePrimaryKeyLookupQuery(Table table,
List<SelectItem> selectItems,
Column primaryKeyColumn,
Object keyValue) |
Modifier and Type | Method and Description |
---|---|
protected Row |
MongoDbDataContext.executePrimaryKeyLookupQuery(Table table,
List<SelectItem> selectItems,
Column primaryKeyColumn,
Object keyValue) |
Modifier and Type | Method and Description |
---|---|
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.
|
Object |
ToStringFunction.evaluate(Row row,
Object[] parameters,
SelectItem item) |
Object |
ToNumberFunction.evaluate(Row row,
Object[] parameters,
SelectItem item) |
Object |
ToDateFunction.evaluate(Row row,
Object[] parameters,
SelectItem item) |
Object |
ToBooleanFunction.evaluate(Row row,
Object[] parameters,
SelectItem item) |
Object |
SubstringFunction.evaluate(Row row,
Object[] parameters,
SelectItem operandItem) |
Object |
ScalarFunction.evaluate(Row row,
Object[] parameters,
SelectItem operandItem)
Applies and evaluates the function on a particular row of data.
|
Object |
MapValueFunction.evaluate(Row row,
Object[] parameters,
SelectItem operandItem) |
Modifier and Type | Method and Description |
---|---|
Row |
SingleMapColumnSchemaBuilder.convert(Document document,
DataSetHeader header) |
Row |
ColumnNameAsKeysRowConverter.convert(Document document,
DataSetHeader header) |
Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.