|
Type bindings in Java are straightforward and reuse the existing standard types:
boolean
is used for boolean values.int
is used for integer values.long
is used for long values.double
is used for double float values.String
is used for string values (for the purpose of serialization and deserialization, the UTF-8 encoding is used).byte[]
is used to describe binary buffers.