Difference between revisions of "Core.Terms.BooleanLiteral"
Jump to navigation
Jump to search
(Created page with "Category:Core == Classification == {{ClassificationActivity | BooleanLiteral | Literal of type Boolean | Term | OTX Core library | Literal related terms |...") |
|||
(9 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | [[Category:Core]] | + | {{DISPLAYTITLE:OTX '''BooleanLiteral'''}}[[Category:Core]] |
== Classification == | == Classification == | ||
{{ClassificationActivity | BooleanLiteral | Literal of type Boolean | [[Term]] | [[Core|OTX Core library]] | [[Literal related terms]] | - | - }} | {{ClassificationActivity | BooleanLiteral | Literal of type Boolean | [[Term]] | [[Core|OTX Core library]] | [[Literal related terms]] | - | - }} | ||
− | == | + | == OTL Syntax == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
Value = literal | Value = literal | ||
Line 14: | Line 14: | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| Literal | [[Boolean]] | [[Literal]] | - | [1] | Designation of a Boolean value to c# notation.}} | + | {{TableRowPropertie1| Literal | [[Core.DataTypes.SimpleDataType.Boolean|Boolean]] | [[Literal]] | - | [1] | Designation of a Boolean value to c# notation.}} |
|} | |} | ||
− | == Examples == | + | == OTL Examples == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | Boolean bool1 = true; | |
− | + | Boolean bool2 = false; | |
</syntaxhighlight> | </syntaxhighlight> | ||
== See also == | == See also == | ||
− | [[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/> |
− | [[ListLiteral]] <br/> | + | [[Core.Terms.ListLiteral|ListLiteral]] <br/> |
− | [[MapLiteral]] <br/> | + | [[Core.Terms.MapLiteral|MapLiteral]] <br/> |
− | [[UserExceptionLiteral]] | + | [[Core.Terms.UserExceptionLiteral|UserExceptionLiteral]] |
Latest revision as of 08:42, 16 February 2016
Classification
Name | BooleanLiteral |
Short Description | Literal of type Boolean |
Class | Term |
Extension | OTX Core library |
Group | Literal related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
Value = literal
Description
A BooleanLiteral is the code representation of a value of type Boolean.
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Literal | Boolean | Literal | - | [1] | Designation of a Boolean value to c# notation. |
OTL Examples
Boolean bool1 = true;
Boolean bool2 = false;
See also
IntegerLiteral
FloatLiteral
StringLiteral
ByteFieldLiteral
ListLiteral
MapLiteral
UserExceptionLiteral