class CSensrvChannelCondition : public CBase |
CSensrvChannelCondition represents a channel condition item. Channel conditions are added to a channel condition set. A channel condition set is met when all channel conditions are met at the same time, if it is AND-type set, or when single condition is met if it is OR-type set. Only one channel condition can be set for each data item in single channel condition set. Certain condition types (range conditions) require two condition objects (upper and lower limit) in a condition set for the set to be valid. The pair of conditions must both have the same index in the condition set and they are considered a single channel condition.
Each Condition has an ItemIndex associated with it. When a Condition is added to a Condition Set using CSensrvChannelConditionSet::AddChannelConditionL() this index must be different to all other conditions added to the set with the exception of range conditions as described above. If the index supplied already exists and the condition is not part of a range condition then CSensrvChannelConditionSet::AddChannelConditionL() leaves with KErrArgument.
TSensrvConditionOperator sensrvutil.lib
S60 5.0
Public Member Functions | |
---|---|
CSensrvChannelCondition() | |
TInt | ConditionItemIndex() |
TInt | ConditionOperator() |
TInt | ConditionType() |
const TDesC8 & | ConditionValue() |
TInt | GetConditionValue(TDes8 &) |
IMPORT_C CSensrvChannelCondition * | NewL(TInt, TInt, TInt, TDesC8 &) |
IMPORT_C CSensrvChannelCondition * | NewLC(TInt, TInt, TInt, TDesC8 &) |
TInt | ConditionItemIndex | ( | ) | const [pure virtual] |
Get condition item index
TInt Condition item index
TInt | ConditionOperator | ( | ) | const [pure virtual] |
Get condition operator
TInt Condition operator
const TDesC8 & | ConditionValue | ( | ) | const [pure virtual] |
Get condition value as reference.
Reference to condition value descriptor.
TInt | GetConditionValue | ( | TDes8 & | aValue | ) | const [pure virtual] |
Get condition value.
KErrOverflow if aData is the wrong size for data item or one of the system-wide error codes
TDes8 & aValue | Value of the condition is copied to the supplied descriptor |
IMPORT_C CSensrvChannelCondition * | NewL | ( | TInt | aConditionType, |
TInt | aConditionOperator, | |||
TInt | aItemIndex, | |||
TDesC8 & | aValue | |||
) | [static] |
Two-phase constructor
Pointer to created object
leave
KErrNoMemory
leave
KErrArgument if parameters are invalid or are less than 0
leave
One of the system-wide error codes
TInt aConditionType | Defines the type of the condition |
TInt aConditionOperator | Defines the operator used in the condition |
TInt aItemIndex | Item index to be used in the condition evaluation |
TDesC8 & aValue | Value to be used in condition evaluation. By default this should be a packaged data object of the channel. See the channel specific headers in . If the channel type requires a different type of value, that must be indicated clearly in the channel specific header defining the channel. |
IMPORT_C CSensrvChannelCondition * | NewLC | ( | TInt | aConditionType, |
TInt | aConditionOperator, | |||
TInt | aItemIndex, | |||
TDesC8 & | aValue | |||
) | [static] |
Two-phase constructor
Pointer to created object
leave
KErrNoMemory
leave
KErrArgument if parameters are invalid or are less than 0
leave
One of the system-wide error codes
TInt aConditionType | Defines the type of the condition |
TInt aConditionOperator | Defines the operator used in the condition |
TInt aItemIndex | Item index to be used in the condition evaluation |
TDesC8 & aValue | Value to be used in condition evaluation. By default this should be a packaged data object of the channel. See the channel specific headers in . If the channel type requires a different type of value, that must be indicated clearly in the channel specific header defining the channel. |