Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetIntervalLowerLimitTypeAsString"
Jump to navigation
Jump to search
(Created page with "{{DISPLAYTITLE:OTX '''GetIntervalLowerLimitTypeAsString'''}}Category:DiagDataBrowsingPlus == Classification == {{ClassificationActivity | GetIntervalLowerLimitTypeAsString...") |
|||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:OTX '''GetIntervalLowerLimitTypeAsString'''}}[[Category:DiagDataBrowsingPlus]] | {{DISPLAYTITLE:OTX '''GetIntervalLowerLimitTypeAsString'''}}[[Category:DiagDataBrowsingPlus]] | ||
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetIntervalLowerLimitTypeAsString | | + | {{ClassificationActivity | GetIntervalLowerLimitTypeAsString| Gets the lower limit type of the [[Extensions.DiagDataBrowsingPlus.Interval|Interval]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus|Interval related terms]] | NONE | - }} |
== OTL Syntax == | == OTL Syntax == | ||
− | |||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | StringTerm = DiagDataBrowsingPlus.GetIntervalLowerLimitTypeAsString(IntervalTerm); | |
</syntaxhighlight> | </syntaxhighlight> | ||
− | |||
== Description == | == Description == | ||
− | + | '''GetIntervalLowerLimitTypeAsString''' returns the lower limit type of the text table element of the parameter as [[Core.DataTypes.SimpleDataType.String|string]]. Valid values are "eLIMIT_CLOSED", "eLIMIT_INFINITE", "eLIMIT_OPEN". | |
− | + | ||
− | {{ | + | {{Note|NOTE — The appropriate MVCI system operation is MCDInterval::getLowerLimitIntervalType}} |
− | {{ | + | |
− | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | Returns the lower limit type of the text table element of the parameter as [[Core.DataTypes.SimpleDataType.String|string]].}} | |
== Properties == | == Properties == | ||
− | |||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{ | + | {{TableRowPropertie2| interval|[[Extensions.DiagDataBrowsingPlus.Interval|Interval]] | [[Term]] | - | [1..1] |The element addresses the '''Interval''' (MCDInterval) which lower limit type 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;"> | ||
− | DiagCom. | + | 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]); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | |||
== See also == | == See also == | ||
− | + | [[Extensions.DiagCom.GetComChannel|GetComChannel]] <br/> | |
+ | [[Extensions.DiagCom.CreateDiagServiceByName|CreateDiagServiceByName]] <br/> | ||
+ | [[Extensions.DiagCom.CreateDiagServiceBySemantic|CreateDiagServiceBySemantic]] <br/> | ||
+ | [[Extensions.DiagCom.ExecuteDiagService|ExecuteDiagService]] <br/> | ||
+ | [[Extensions.DiagCom.GetFirstResponse|GetFirstResponse]] <br/> | ||
+ | [[Extensions.DiagCom.GetRequest|GetRequest]] <br/> | ||
+ | [[Extensions.DiagCom.GetParameterByPath|GetParameterByPath]] <br/> | ||
+ | [[Extensions.DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals|GetDbParameterValidInternalIntervals]] <br/> | ||
+ | [[Extensions.DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals|GetDbParameterValidInternalIntervals]] |
Revision as of 03:19, 20 September 2018
Contents
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);
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".
![]()
NOTE — The appropriate MVCI system operation is MCDInterval::getLowerLimitIntervalType
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 type 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 type shall be returned. |
OTL Examples
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
GetDbParameterValidInternalIntervals