Basic Object Types

    Basic types are atomic types without subfields.

    TypeComment
    StringThe java.lang.String data type is an array of characters with a maximum length of 231-1.
    LongThe 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.
    DateRepresents a specific instant in time, with millisecond precision. Should be UTC based, but might differ from server to server.
    BooleanTrue or false.