Manages the list of sensor data definitions.
|
|
|
|
|
__contains__(x,
y)
y in x |
|
|
|
|
__delitem__(x,
y)
del x[y] |
|
|
|
|
|
|
|
|
|
|
__setitem__(x,
i,
y)
x[i]=y |
|
|
|
bool
|
append(iSensorDef)
Appends a sensor data definition to the list. |
|
|
|
SensorDataDefinition
|
at(iName)
Returns the sensor data definition by name. |
|
|
|
None
|
|
|
bool
|
contains(iSensorDef)
Determines if the sensor data definition is in the list. |
|
|
|
int
|
index(iSensorDef)
Retrieves the index of a sensor data definition. |
|
|
|
bool
|
insert(iIndex,
iSensorDef)
Inserts a sensor data definition into the list. |
|
|
list{string}
|
names()
Returns the names of the sensor data definitions in the list. |
|
|
|
bool
|
remove(iIndex)
Removes a sensor data definition. |
|
|
|
bool
|
replace(iIndex,
iSensorDef)
Replaces a sensor data definition. |
|
|
|
int
|
size()
Returns the size of the list. |
|
|
list{string}
|
swap()
Returns the names of the sensor data definitions in the list. |
|
|
|
Inherited from core.Updatable:
__enter__,
__exit__,
clone,
hash,
isValid,
reasonWhyInvalid
|