Apama 10.7.2 | Developing Apama Applications | EPL Reference | Lexical Elements | Literals | Integer literals | Base 16 literals
 
Base 16 literals
Base 16 integral literal values begin with the characters 0x, and consist of a combination of the decimal digits 0 through 9 and the hexadecimal digits a through f and A through F.
Examples:
j := 0x0;
j := 0x0d;
j := 0x0aFF;
j := 0x7fffffffffffffff;
The number 0x7fffffffffffffff or (263 - 1) is the largest base 16 integer literal value that can be represented.