Difference between revisions of "Extensions.DiagDataBrowsing.IsStringParameter"

From emotive
Jump to navigation Jump to search
Line 1: Line 1:
[[Category:DiagDataBrowsing]]
+
{{DISPLAYTITLE:OTX '''IsStringParameter'''}}[[Category:DiagDataBrowsing]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | IsStringParameter | Checks if the parameter is of type String | [[Term]] | [[DiagDataBrowsing|OTX DiagDataBrowsing extension]] | [[DiagDataBrowsing terms]] | - | - }}
+
{{ClassificationActivity | IsStringParameter | Checks if the parameter is of type String | [[Term]] | [[Extensions.DiagDataBrowsing|OTX DiagDataBrowsing extension]] | [[DiagDataBrowsing terms]] | - | - }}
  
 
== OTL Syntax ==
 
== OTL Syntax ==
Line 11: Line 11:
 
'''IsStringParameter''' will return TRUE if the specified parameter if and only represents a string value as defined in the diagnostic database.
 
'''IsStringParameter''' will return TRUE if the specified parameter if and only represents a string value as defined in the diagnostic database.
  
{{TermReturnValue| [[Booelan]] | Returns TRUE if exactly then the specified parameter is a String value as defined in the diagnostic database}}
+
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.Boolean|Boolean]] | Returns TRUE if exactly then the specified parameter is a String value as defined in the diagnostic database}}
  
 
== Properties ==
 
== Properties ==
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie1| Parameter | [[Parameter]] | [[Term]] | - | [1] | The request or response parameter that is checked by Type}}
+
{{TableRowPropertie1| Parameter | [[Extensions.DiagCom.Parameter|Parameter]] | [[Term]] | - | [1] | The request or response parameter that is checked by Type}}
 
|}
 
|}
  
Line 37: Line 37:
  
 
== See also ==
 
== See also ==
[[IsNumericParameter]] <br/>
+
[[Extensions.DiagDataBrowsing.IsNumericParameter|IsNumericParameter]] <br/>
[[IsBooleanParameter]] <br/>
+
[[Extensions.DiagDataBrowsing.IsBooleanParameter|IsBooleanParameter]] <br/>
[[IsByteFieldParameter]] <br/>
+
[[Extensions.DiagDataBrowsing.IsByteFieldParameter|IsByteFieldParameter]] <br/>
[[IsComplexParameter]]
+
[[Extensions.DiagDataBrowsing.IsComplexParameter|IsComplexParameter]]

Revision as of 06:42, 5 February 2016

Classification

Name IsStringParameter
Short Description Checks if the parameter is of type String
Class Term
Extension OTX DiagDataBrowsing extension
Group DiagDataBrowsing terms
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

BooleanTerm = DiagDataBrowsing.IsStringParameter(ParameterTerm);

Description

IsStringParameter will return TRUE if the specified parameter if and only represents a string value as defined in the diagnostic database.

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
Boolean Returns TRUE if exactly then the specified parameter is a String value as defined in the diagnostic database

Properties

Name Data Type Class Default Cardinality Description
Parameter Parameter Term - [1] The request or response parameter that is checked by Type

OTL Examples

DiagCom.ComChannel ComChannel1;
DiagCom.DiagService DiagService1;
DiagCom.Parameter Parameter1;
DiagCom.Request Request1;
List<String> List1;
Boolean Boolean1 = false;

ComChannel1 = DiagCom.GetComChannel("LL_AccesStartInterUDS", "", false);
DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_ReadDataByIdentActuaTestStatu");
List1 = DiagDataBrowsing.GetRequestParameterList(DiagService1);
Request1 = DiagCom.GetRequest(DiagService1);
Parameter1 = DiagCom.GetParameterByPath(Request1, {List1[0]});
Boolean1 = DiagDataBrowsing.IsStringParameter(Parameter1);

See also

IsNumericParameter
IsBooleanParameter
IsByteFieldParameter
IsComplexParameter