Difference between revisions of "Extensions.DiagCom.GetParameterAsList"
Jump to navigation
Jump to search
(4 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:OTX '''GetParameterAsList'''}}[[Category:DiagCom]] | {{DISPLAYTITLE:OTX '''GetParameterAsList'''}}[[Category:DiagCom]] | ||
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetParameterAsList | | + | {{ClassificationActivity | GetParameterAsList | Gets the list of parameters within a parameter | [[Term]] | [[Extensions.DiagCom|OTX DiagCom extension]] | [[Extensions.DiagCom#Terms|Parameter related terms]] | [[Core.DataTypes.ComplexDataType.TypeMismatchException|TypeMismatchException]] | - }} |
== OTL Syntax == | == OTL Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | ListTerm | + | ListTerm DiagCom.GetParameterAsList(ParameterContainerTerm parameterContainer); |
</syntaxhighlight> | </syntaxhighlight> | ||
== Description == | == Description == | ||
− | The '''GetParameterAsList''' term accepts a '''ParameterContainerTerm''' and returns an '''otx:List''' of [[Extensions.DiagCom.Parameter|Parameter]] handles, corresponding to the contents of the passed in parameter container object. This term is used in case a parameter of a diagnostic service contains a set of parameters. If the parameter supports child parameters, all child parameters | + | The '''GetParameterAsList''' term accepts a '''ParameterContainerTerm''' and returns an '''otx:List''' of [[Extensions.DiagCom.Parameter|Parameter]] handles, corresponding to the contents of the passed in parameter container object. This term is used in case a parameter of a diagnostic service contains a set of parameters. If the parameter supports child parameters, all child parameters will be returned. This list can be empty. If the parameter does not support child parameters, a [[Core.DataTypes.ComplexDataType.TypeMismatchException|TypeMismatchException]] will be thrown. |
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.List|List]] | List of parameter (Type [[Extensions.DiagCom.Parameter|Parameter]])}} | {{TermReturnValue| [[Core.DataTypes.ComplexDataType.List|List]] | List of parameter (Type [[Extensions.DiagCom.Parameter|Parameter]])}} | ||
Line 16: | Line 16: | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie2| ParameterContainer | [[Extensions.DiagCom.ParameterContainer|ParameterContainer]] | [[Term]] | - | [1] | The '''ParameterContainer''' whose value | + | {{TableRowPropertie2| ParameterContainer | [[Extensions.DiagCom.ParameterContainer|ParameterContainer]] | [[Term]] | - | [1] | The '''ParameterContainer''' whose value will be returned as an otx:List.}} |
|} | |} | ||
== 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.Request Request1; | DiagCom.Request Request1; | ||
List<DiagCom.Parameter> List1; | List<DiagCom.Parameter> List1; |
Latest revision as of 10:17, 12 September 2019
Contents
Classification
Name | GetParameterAsList |
Short Description | Gets the list of parameters within a parameter |
Class | Term |
Extension | OTX DiagCom extension |
Group | Parameter related terms |
Exceptions | TypeMismatchException |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ListTerm DiagCom.GetParameterAsList(ParameterContainerTerm parameterContainer);
Description
The GetParameterAsList term accepts a ParameterContainerTerm and returns an otx:List of Parameter handles, corresponding to the contents of the passed in parameter container object. This term is used in case a parameter of a diagnostic service contains a set of parameters. If the parameter supports child parameters, all child parameters will be returned. This list can be empty. If the parameter does not support child parameters, a TypeMismatchException will be thrown.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
List | List of parameter (Type Parameter) |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
ParameterContainer | ParameterContainer | Term | - | [1] | The ParameterContainer whose value will be returned as an otx:List. |
OTL Examples
/// Local Declarations
DiagCom.Request Request1;
List<DiagCom.Parameter> List1;
DiagCom.ComChannel ComChannel1;
/// Flow
ComChannel1 = DiagCom.GetComChannel("LL_GatewUDS", "", false);
Request1 = DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_RoutiContrCheckMemor"));
List1 = DiagCom.GetParameterAsList(Request1);
See also
GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
GetRequest
ExecuteDiagService
GetFirstResponse
GetAllResponses
GetParameterBySemantic
GetParameterByPath