Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetIntervalLowerLimitAsString"
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
== OTL Syntax == | == OTL Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | /// Local Declarations | |
+ | String StringVariable; | ||
+ | /// Flow | ||
+ | StringVariable = DiagDataBrowsingPlus.GetIntervalLowerLimitAsString(IntervalTerm); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 18: | Line 21: | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie2| | + | {{TableRowPropertie2| Interval|[[Extensions.DiagDataBrowsingPlus.Interval|Interval]] | [[Term]] | - | [1..1] |The element addresses the '''Interval''' (MCDInterval) which lower limit shall be returned.}} |
|} | |} | ||
== OTL Examples == | == OTL Examples == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
+ | /// Local Declarations | ||
+ | |||
DiagCom.Parameter Parameter; | DiagCom.Parameter Parameter; | ||
DiagDataBrowsingPlus.DbParameter DbParameter; | DiagDataBrowsingPlus.DbParameter DbParameter; |
Revision as of 09:25, 24 October 2018
Contents
Classification
Name | GetIntervalLowerLimitAsString |
Short Description | Gets the ower limit of the Interval |
Class | Term |
Extension | OTX DiagDataBrowsingPlus extension |
Group | Interval related terms |
Exceptions | NONE |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
/// Local Declarations
String StringVariable;
/// Flow
StringVariable = DiagDataBrowsingPlus.GetIntervalLowerLimitAsString(IntervalTerm);
Description
GetIntervalLowerLimitAsString returns the lower limit of the text table element of the parameter.
![]()
NOTE — The appropriate MVCI system operation is MCDInterval::getLowerLimit::getValueAsString
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
String | Returns the lower limit of the text table element of the parameter as string. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Interval | Interval | Term | - | [1..1] | The element addresses the Interval (MCDInterval) which lower limit 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.GetIntervalLowerLimitAsString(List_Interval[0]);
See also
GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
ExecuteDiagService
GetFirstResponse
GetRequest
GetParameterByPath
GetDbParameterValidInternalIntervals
GetDbParameterValidPhysicalIntervals