Data types
Internal data types
Type |
Description |
Value |
---|---|---|
byte |
Signed integer |
-128 to 127 |
short |
Signed integer |
-32768 to 32767 |
int |
Signed integer |
-2147483648 to 2147483647 |
long |
Signed integer |
-9223372036854775808 to 9223372036854775807 |
float |
IEEE 754 standard 32-bit floating point |
±3.40282347E+38 to ±1.40239846E-45 |
double |
IEEE 754 standard 64-bit floating point |
±1.79769313486231570E+308 to ±4.94065645841246544E-324 |
BigDecimal |
Signed arbitrary-precision decimal |
|
boolean |
Boolean |
true or false |
char |
Unicode standard character |
\u0000 to \uFFFF |
String |
String |
String of 0 to 2147483647 characters |
Date |
Date, time |
|
byte[] |
Byte array |
Byte array of 0 to 2147483647 bytes |
Notes on date type
String expression for date type
To output date type data as string data, use the following date format.
Date format |
---|
yyyy-MM-dd'T'HH:mm:ss.SSSZZ |
Notes on binary type
String expression for binary type
When binary type data is output as string data, it's converted to Base64 format.