Package org.openrefine.expr
Class WrappedRow
- java.lang.Object
- 
- org.openrefine.expr.WrappedRow
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description protected classWrappedRow.RecordCellsprotected classWrappedRow.WrappedRecord
 - 
Field SummaryFields Modifier and Type Field Description ColumnModelcolumnModelRecordrecordRowrowlongrowIndex
 - 
Constructor SummaryConstructors Constructor Description WrappedRow(ColumnModel columnModel, long rowIndex, Row row)Constructor to be used when the wrapped row is used in rows mode, where no record is available.WrappedRow(ColumnModel columnModel, long rowIndex, Row row, Record record)Constructor to be used when the wrapped row is used in records mode, when the enclosing record is available.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanfieldAlsoHasFields(String name)ObjectgetField(String name)
 
- 
- 
- 
Field Detail- 
columnModelpublic final ColumnModel columnModel 
 - 
rowIndexpublic final long rowIndex 
 - 
rowpublic final Row row 
 - 
recordpublic final Record record 
 
- 
 - 
Constructor Detail- 
WrappedRowpublic WrappedRow(ColumnModel columnModel, long rowIndex, Row row) Constructor to be used when the wrapped row is used in rows mode, where no record is available.
 - 
WrappedRowpublic WrappedRow(ColumnModel columnModel, long rowIndex, Row row, Record record) Constructor to be used when the wrapped row is used in records mode, when the enclosing record is available.- Parameters:
- record- the record the row is part of
 
 
- 
 
-