Extensions.DiagDataBrowsingPlus.GetIntervalLowerLimitTypeAsString

From emotive
Jump to navigation Jump to search

Classification

Name GetIntervalLowerLimitTypeAsString
Short Description Gets the lower limit type of the Interval
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group Interval related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

StringTerm DiagDataBrowsingPlus.GetIntervalLowerLimitTypeAsString(IntervalTerm interval);

Description

GetIntervalLowerLimitTypeAsString returns the lower limit type of the text table element of the parameter as string. Valid values are "eLIMIT_CLOSED", "eLIMIT_INFINITE", "eLIMIT_OPEN".

Icons Note.png The appropriate MVCI system operation is MCDInterval::getLowerLimitIntervalType

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
String Returns the lower limit type of the text table element of the parameter.

Properties

Name Data Type Class Default Cardinality Description
Interval Interval Term - [1..1] The element addresses the Interval (MCDInterval) which lower limit type shall be returned.

OTL Examples

/// Local Declarations

DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<DiagDataBrowsingPlus.Interval> List_Interval;
String MyString;

/// Flow

Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("AIRBAG", "", false), "DiagnServi_ClearDiagnInforSingle")), {"Dtc"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
List_Interval = DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals(DbParameter);
MyString = DiagDataBrowsingPlus.GetIntervalLowerLimitTypeAsString(List_Interval[0]);

See also

GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
ExecuteDiagService
GetFirstResponse
GetRequest
GetParameterByPath
GetDbParameterValidInternalIntervals
GetDbParameterValidPhysicalIntervals