Literals
Certain literals are used for the rule language grammar.
The TIBCO BusinessEvents rule language supports these literals:
- long
- An integer literal suffixed with the letter L. The suffixed L can be either upper or lower case, but keep in mind that the lower case L (l) can be difficult to distinguish from the number one (1).
Examples:
0l 0777L 0x100000000L 2147483648L 0xC0B0L
- double
- A number that can represent fractional values. D suffix is optional unless there is no decimal point or exponent.
Examples:
1D 1e1 2. .3 0.0D 3.14 1e-9d 1e137
Copyright © Cloud Software Group, Inc. All rights reserved.