An implementation of the DatasetItem class for the TerraLib In-Memory Data Access driver. More...
#include <DataSetItem.h>
Public Member Functions | |
| std::unique_ptr< DataSetItem > | clone () const |
| It returns a clone of the DataSetItem. More... | |
| DataSetItem (const te::da::DataSet *parent) | |
| It creates a new item having the same schema as the parent dataset. More... | |
| DataSetItem (const std::size_t &nproperties) | |
| It creates a new item having the given number of properties. More... | |
| DataSetItem (const DataSetItem &rhs) | |
| It creates a new item by cloning the values in the source item (rhs). More... | |
| bool | getBool (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| std::unique_ptr< te::dt::ByteArray > | getByteArray (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| char | getChar (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| std::unique_ptr< te::dt::DateTime > | getDateTime (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| double | getDouble (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| float | getFloat (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| std::unique_ptr< te::gm::Geometry > | getGeometry (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| boost::int16_t | getInt16 (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| boost::int32_t | getInt32 (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| boost::int64_t | getInt64 (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| std::string | getNumeric (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| std::size_t | getNumProperties () const |
| It returns the number of properties. More... | |
| te::da::DataSet * | getParent () const |
| It returns its parent. More... | |
| int | getPropertyDataType (std::size_t pos) const |
| It returns the type of the pos-th property. More... | |
| std::string | getPropertyName (std::size_t pos) const |
| It returns the name of the pos-th property. More... | |
| std::unique_ptr< te::rst::Raster > | getRaster (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| std::string | getString (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| unsigned char | getUChar (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| std::unique_ptr< te::dt::AbstractData > | getValue (std::size_t i) const |
| It returns the value of the i-th property. More... | |
| bool | isNull (std::size_t i) const |
| DataSetItem & | operator= (const DataSetItem &rhs) |
| Assignment operator. More... | |
| void | setBool (std::size_t i, bool value) |
| It sets the value of the i-th property. More... | |
| void | setBool (const std::string &name, bool value) |
| It sets the value of the property, indicating its name. More... | |
| void | setByteArray (std::size_t i, te::dt::ByteArray *value) |
| It sets the value of the i-th property. More... | |
| void | setByteArray (const std::string &name, te::dt::ByteArray *value) |
| It sets the value of the property, indicating its name. More... | |
| void | setChar (std::size_t i, char value) |
| It sets the value of the i-th property. More... | |
| void | setChar (const std::string &name, char value) |
| It sets the value of the property, indicating its name. More... | |
| void | setDateTime (std::size_t i, te::dt::DateTime *value) |
| It sets the value of the i-th property. More... | |
| void | setDateTime (const std::string &name, te::dt::DateTime *value) |
| It sets the value of the property, indicating its name. More... | |
| void | setDouble (std::size_t i, double value) |
| It sets the value of the i-th property. More... | |
| void | setDouble (const std::string &name, double value) |
| It sets the value of the property, indicating its name. More... | |
| void | setFloat (std::size_t i, float value) |
| It sets the value of the i-th property. More... | |
| void | setFloat (const std::string &name, float value) |
| It sets the value of the property, indicating its name. More... | |
| void | setGeometry (std::size_t i, te::gm::Geometry *value) |
| It sets the value of the i-th property. More... | |
| void | setGeometry (const std::string &name, te::gm::Geometry *value) |
| It sets the value of the property, indicating its name. More... | |
| void | setInt16 (std::size_t i, boost::int16_t value) |
| It sets the value of the i-th property. More... | |
| void | setInt16 (const std::string &name, boost::int16_t value) |
| It sets the value of the property, indicating its name. More... | |
| void | setInt32 (std::size_t i, boost::int32_t value) |
| It sets the value of the i-th property. More... | |
| void | setInt32 (const std::string &name, boost::int32_t value) |
| It sets the value of the property, indicating its name. More... | |
| void | setInt64 (std::size_t i, boost::int64_t value) |
| It sets the value of the i-th property. More... | |
| void | setInt64 (const std::string &name, boost::int64_t value) |
| It sets the value of the property, indicating its name. More... | |
| void | setNumeric (std::size_t i, const std::string &value) |
| It sets the value of the i-th property. More... | |
| void | setNumeric (const std::string &name, const std::string &value) |
| It sets the value of the property, indicating its name. More... | |
| void | setRaster (std::size_t i, te::rst::Raster *value) |
| It sets the value of the i-th property. More... | |
| void | setRaster (const std::string &name, te::rst::Raster *value) |
| It sets the value of the property, indicating its name. More... | |
| void | setString (std::size_t i, const std::string &value) |
| It sets the value of the i-th property. More... | |
| void | setString (const std::string &name, const std::string &value) |
| It sets the value of the property, indicating its name. More... | |
| void | setUChar (std::size_t i, unsigned char value) |
| It sets the value of the i-th property. More... | |
| void | setUChar (const std::string &name, unsigned char value) |
| It sets the value of the property, indicating its name. More... | |
| void | setValue (std::size_t i, te::dt::AbstractData *value) |
| It sets the value of the i-th property. More... | |
| void | setValue (const std::string &name, te::dt::AbstractData *value) |
| It sets the value of the property, indicating its name. More... | |
| virtual | ~DataSetItem () |
| Destructor. More... | |
Protected Attributes | |
| boost::ptr_vector< boost::nullable< te::dt::AbstractData > > | m_data |
| The data values of the dataset item. More... | |
| const te::da::DataSet * | m_parent |
| The parent dataset, if the item is associated to one. More... | |
Friends | |
| class | DataSet |
An implementation of the DatasetItem class for the TerraLib In-Memory Data Access driver.
Definition at line 52 of file DataSetItem.h.
|
explicit |
It creates a new item having the same schema as the parent dataset.
| parent | The dataset to which this item is associated. |
|
explicit |
It creates a new item having the given number of properties.
| nproperties | The number of properties. |
|
explicit |
It creates a new item by cloning the values in the source item (rhs).
| rhs | The right-hand-side object to copy its values. |
|
virtual |
Destructor.
| std::unique_ptr<DataSetItem> te::mem::DataSetItem::clone | ( | ) | const |
It returns a clone of the DataSetItem.
| bool te::mem::DataSetItem::getBool | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| std::unique_ptr<te::dt::ByteArray> te::mem::DataSetItem::getByteArray | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| char te::mem::DataSetItem::getChar | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| std::unique_ptr<te::dt::DateTime> te::mem::DataSetItem::getDateTime | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| double te::mem::DataSetItem::getDouble | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| float te::mem::DataSetItem::getFloat | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| std::unique_ptr<te::gm::Geometry> te::mem::DataSetItem::getGeometry | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| boost::int16_t te::mem::DataSetItem::getInt16 | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| boost::int32_t te::mem::DataSetItem::getInt32 | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| boost::int64_t te::mem::DataSetItem::getInt64 | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| std::string te::mem::DataSetItem::getNumeric | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| std::size_t te::mem::DataSetItem::getNumProperties | ( | ) | const |
It returns the number of properties.
| te::da::DataSet* te::mem::DataSetItem::getParent | ( | ) | const |
It returns its parent.
| int te::mem::DataSetItem::getPropertyDataType | ( | std::size_t | pos | ) | const |
It returns the type of the pos-th property.
| std::string te::mem::DataSetItem::getPropertyName | ( | std::size_t | pos | ) | const |
It returns the name of the pos-th property.
| std::unique_ptr<te::rst::Raster> te::mem::DataSetItem::getRaster | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| std::string te::mem::DataSetItem::getString | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| unsigned char te::mem::DataSetItem::getUChar | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| std::unique_ptr<te::dt::AbstractData> te::mem::DataSetItem::getValue | ( | std::size_t | i | ) | const |
It returns the value of the i-th property.
| bool te::mem::DataSetItem::isNull | ( | std::size_t | i | ) | const |
| DataSetItem& te::mem::DataSetItem::operator= | ( | const DataSetItem & | rhs | ) |
Assignment operator.
It copies the values from the rhs item.
| rhs | The right-hand-side ibject to copy its values. |
| void te::mem::DataSetItem::setBool | ( | std::size_t | i, |
| bool | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setBool | ( | const std::string & | name, |
| bool | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setByteArray | ( | std::size_t | i, |
| te::dt::ByteArray * | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setByteArray | ( | const std::string & | name, |
| te::dt::ByteArray * | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setChar | ( | std::size_t | i, |
| char | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setChar | ( | const std::string & | name, |
| char | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setDateTime | ( | std::size_t | i, |
| te::dt::DateTime * | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setDateTime | ( | const std::string & | name, |
| te::dt::DateTime * | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setDouble | ( | std::size_t | i, |
| double | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setDouble | ( | const std::string & | name, |
| double | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setFloat | ( | std::size_t | i, |
| float | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setFloat | ( | const std::string & | name, |
| float | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setGeometry | ( | std::size_t | i, |
| te::gm::Geometry * | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setGeometry | ( | const std::string & | name, |
| te::gm::Geometry * | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setInt16 | ( | std::size_t | i, |
| boost::int16_t | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setInt16 | ( | const std::string & | name, |
| boost::int16_t | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setInt32 | ( | std::size_t | i, |
| boost::int32_t | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setInt32 | ( | const std::string & | name, |
| boost::int32_t | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setInt64 | ( | std::size_t | i, |
| boost::int64_t | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setInt64 | ( | const std::string & | name, |
| boost::int64_t | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setNumeric | ( | std::size_t | i, |
| const std::string & | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setNumeric | ( | const std::string & | name, |
| const std::string & | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setRaster | ( | std::size_t | i, |
| te::rst::Raster * | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setRaster | ( | const std::string & | name, |
| te::rst::Raster * | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setString | ( | std::size_t | i, |
| const std::string & | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setString | ( | const std::string & | name, |
| const std::string & | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setUChar | ( | std::size_t | i, |
| unsigned char | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setUChar | ( | const std::string & | name, |
| unsigned char | value | ||
| ) |
It sets the value of the property, indicating its name.
| void te::mem::DataSetItem::setValue | ( | std::size_t | i, |
| te::dt::AbstractData * | value | ||
| ) |
It sets the value of the i-th property.
| void te::mem::DataSetItem::setValue | ( | const std::string & | name, |
| te::dt::AbstractData * | value | ||
| ) |
It sets the value of the property, indicating its name.
|
friend |
Definition at line 373 of file DataSetItem.h.
|
protected |
The data values of the dataset item.
Definition at line 372 of file DataSetItem.h.
|
protected |
The parent dataset, if the item is associated to one.
Definition at line 371 of file DataSetItem.h.