Difference between revisions of "Core.Terms.ByteFieldLiteral"

From emotive
Jump to navigation Jump to search
(Created page with "Category:Core == Classification == {{ClassificationActivity | ByteFieldLiteral | Literal of type ByteField| Term | OTX Core library | [[Literal related terms]...")
 
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Core]]
+
{{DISPLAYTITLE:OTX '''ByteFieldLiteral'''}}[[Category:Core]]
 
== Classification ==
 
== Classification ==
 
{{ClassificationActivity | ByteFieldLiteral | Literal of type ByteField| [[Term]] | [[Core|OTX Core library]] | [[Literal related terms]] | - | - }}
 
{{ClassificationActivity | ByteFieldLiteral | Literal of type ByteField| [[Term]] | [[Core|OTX Core library]] | [[Literal related terms]] | - | - }}
  
== Pseudo-Code Syntax ==
+
== 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 | [[ByteField]] | [[Literal]] | - | [1] | Identification of a ByteFields}}
+
{{TableRowPropertie1| Literal | [[Core.DataTypes.ComplexDataType.ByteField|ByteField]] | [[Literal]] | - | [1] | Identification of a ByteFields}}
 
|}
 
|}
  
== Examples ==
+
== OTL Examples ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
* 18 00 00 FF FF
+
ByteField ByteField1 = &18 00 00 FF FF;
* 58 01 80 04 64
+
ByteField ByteField2 = &58 01 80 04 64;
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
== 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/>
[[ListLiteral]] <br/>
+
[[Core.Terms.ListLiteral|ListLiteral]] <br/>
[[MapLiteral]] <br/>
+
[[Core.Terms.MapLiteral|MapLiteral]] <br/>
[[UserExceptionLiteral]]
+
[[Core.Terms.UserExceptionLiteral|UserExceptionLiteral]]

Latest revision as of 02:20, 7 May 2019

Classification

Name ByteFieldLiteral
Short Description Literal of type ByteField
Class Term
Extension OTX Core library
Group Literal related terms
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

Value = literal

Description

A ByteFieldLiteral is the code representation of a value of type ByteField.

Properties

Name Data Type Class Default Cardinality Description
Literal ByteField Literal - [1] Identification of a ByteFields

OTL Examples

ByteField ByteField1 = &18 00 00 FF FF;
ByteField ByteField2 = &58 01 80 04 64;

See also

BooleanLiteral
IntegerLiteral
FloatLiteral
StringLiteral
ListLiteral
MapLiteral
UserExceptionLiteral