Basic types are atomic types without subfields.
Type | Comment |
---|---|
String | The java.lang.String data type is an array of characters with a maximum length of 231-1. |
Long | The long data type is a 64-bit two's complement integer. The signed long has a minimum value of -263 and a maximum value of 263-1. |
Date | Represents a specific instant in time, with millisecond precision. Should be UTC based, but might differ from server to server. |
Boolean | True or false. |