Difference between revisions of "Core.Terms.ListLiteral"
Jump to navigation
Jump to search
m (Hb moved page ListLiteral to Core.Terms.ListLiteral: #3153) |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | [[Category:Core]] | + | {{DISPLAYTITLE:OTX '''ListLiteral'''}}[[Category:Core]] |
== Classification == | == Classification == | ||
{{ClassificationActivity | ListLiteral | Literal of type List| [[Term]] | [[Core|OTX Core library]] | [[Literal related terms]] | - | - }} | {{ClassificationActivity | ListLiteral | Literal of type List| [[Term]] | [[Core|OTX Core library]] | [[Literal related terms]] | - | - }} | ||
Line 14: | Line 14: | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| Literal | [[List]] | [[Literal]] | - | [1] | Identification of a list in C# notation}} | + | {{TableRowPropertie1| Literal | [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | [[Literal]] | - | [1] | Identification of a list in C# notation}} |
|} | |} | ||
Line 26: | Line 26: | ||
== See also == | == See also == | ||
− | [[BooleanLiteral]] <br/> | + | [[Core.Terms.BooleanLiteral|BooleanLiteral]] <br/> |
− | [[IntegerLiteral]] <br/> | + | [[Core.Terms.IntegerLiteral|IntegerLiteral]] <br/> |
− | [[FloatLiteral]] <br/> | + | [[Core.Terms.FloatLiteral|FloatLiteral]] <br/> |
− | [[StringLiteral]] <br/> | + | [[Core.Terms.StringLiteral|StringLiteral]] <br/> |
− | [[ByteFieldLiteral]] <br/> | + | [[Core.Terms.ByteFieldLiteral|ByteFieldLiteral]] <br/> |
− | [[MapLiteral]] <br/> | + | [[Core.Terms.MapLiteral|MapLiteral]] <br/> |
− | [[UserExceptionLiteral]] | + | [[Core.Terms.UserExceptionLiteral|UserExceptionLiteral]] |
Latest revision as of 08:44, 16 February 2016
Classification
Name | ListLiteral |
Short Description | Literal of type List |
Class | Term |
Extension | OTX Core library |
Group | Literal related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
Pseudo-Code Syntax
Value = {LiteralTerm, LiteralTerm, ...}
Description
A ListLiteral is the code representation of a value of type List.
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Literal | List | Literal | - | [1] | Identification of a list in C# notation |
Examples
List<Integer> List1 = {0};
List<Integer> List2 = {1, 2, -3};
List<Boolean> List3 = {true , true , false};
List<String> List4 = {"text1" , "text2" , "text3"};
See also
BooleanLiteral
IntegerLiteral
FloatLiteral
StringLiteral
ByteFieldLiteral
MapLiteral
UserExceptionLiteral