Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetIntervalLowerLimitAsString"

From emotive
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{DISPLAYTITLE:OTX '''GetIntervalLowerLimitAsString'''}}[[Category:DiagDataBrowsingPlus]]
 
{{DISPLAYTITLE:OTX '''GetIntervalLowerLimitAsString'''}}[[Category:DiagDataBrowsingPlus]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | GetIntervalLowerLimitAsString| Gets the ower limit of the [[Extensions.DiagDataBrowsingPlus.Interval|Interval]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus|Interval related terms]] | NONE | - }}
+
{{ClassificationActivity | GetIntervalLowerLimitAsString| Gets the ower limit of the [[Extensions.DiagDataBrowsingPlus.Interval|Interval]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus#Terms|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.GetIntervalLowerLimitAsString(IntervalTerm);
+
StringTerm DiagDataBrowsingPlus.GetIntervalLowerLimitAsString(IntervalTerm interval);
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
== Description ==
 
== Description ==
'''GetIntervalLowerLimitAsString''' returns the lower limit of the text table element of the parameter.
+
'''GetIntervalLowerLimitAsString''' returns the lower limit of the text table element of the parameter as [[Core.DataTypes.SimpleDataType.String|string]].
  
{{Note|NOTE — The appropriate MVCI system operation is MCDInterval::getLowerLimit::getValueAsString}}
+
{{Note|The appropriate MVCI system operation is MCDInterval::getLowerLimit::getValueAsString}}
  
 
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | Returns the lower limit of the text table element of the parameter as [[Core.DataTypes.SimpleDataType.String|string]].}}
 
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | Returns the lower limit of the text table element of the parameter as [[Core.DataTypes.SimpleDataType.String|string]].}}
Line 18: Line 18:
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie2| interval|[[Extensions.DiagDataBrowsingPlus.Interval|Interval]] | [[Term]] | - | [1..1] |The element addresses the '''Interval''' (MCDInterval) which lower limit shall be returned.}}
+
{{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;
Line 45: Line 47:
 
[[Extensions.DiagCom.GetParameterByPath|GetParameterByPath]] <br/>
 
[[Extensions.DiagCom.GetParameterByPath|GetParameterByPath]] <br/>
 
[[Extensions.DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals|GetDbParameterValidInternalIntervals]] <br/>
 
[[Extensions.DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals|GetDbParameterValidInternalIntervals]] <br/>
[[Extensions.DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals|GetDbParameterValidInternalIntervals]]
+
[[Extensions.DiagDataBrowsingPlus.GetDbParameterValidPhysicalIntervals|GetDbParameterValidPhysicalIntervals]]

Latest revision as of 08:41, 2 November 2018

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

StringTerm DiagDataBrowsingPlus.GetIntervalLowerLimitAsString(IntervalTerm interval);

Description

GetIntervalLowerLimitAsString returns the lower limit of the text table element of the parameter as string.

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

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 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