Returns field type for the given field name. Returns FieldKind.NOT_AVAILABLE if such field does not exist.
the name of the field
Reads an array of booleans.
name of the field.
the value of the field.
Reads an array of compact objects.
name of the field.
the value of the field.
Reads an array of BigDecimal objects.
name of the field.
the value of the field.
Reads an array of 32-bit IEEE 754 floating point numbers.
name of the field.
the value of the field.
Reads an array of 64-bit IEEE 754 floating point numbers.
name of the field.
the value of the field.
Reads an array of 16-bit two's complement signed integers.
name of the field.
the value of the field.
Reads an array of 32-bit two's complement signed integers.
name of the field.
the value of the field.
Reads an array of 64-bit two's complement signed integers.
name of the field.
the value of the field.
Reads an array of 8-bit two's complement signed integers.
name of the field.
the value of the field.
Reads a nullable array of nullable booleans.
name of the field.
the value of the field.
Reads a nullable array of nullable 32-bit IEEE 754 floating point numbers.
name of the field.
the value of the field.
Reads a nullable array of nullable 64-bit IEEE 754 floating point numbers.
name of the field.
the value of the field.
Reads a nullable array of nullable 16-bit two's complement signed integers.
name of the field.
the value of the field.
Reads a nullable array of nullable 32-bit two's complement signed integers.
name of the field.
the value of the field.
Reads a nullable array of nullable 64-bit two's complement signed integers.
name of the field.
the value of the field.
Reads a nullable array of nullable 8-bit two's complement signed integers.
name of the field.
the value of the field.
Reads an array of UTF-8 encoded strings.
name of the field.
the value of the field.
Reads an array of LocalDateTime objects consisting of date and time.
name of the field.
the value of the field.
Reads an array of OffsetDateTime objects consisting of date, time and timezone offset.
name of the field.
the value of the field.
Reads a boolean.
name of the field.
the value of the field.
Reads a compact object.
name of the field.
the value of the field.
Reads an arbitrary precision and scale floating point number.
name of the field.
the value of the field.
Reads a 32-bit IEEE 754 floating point number.
name of the field.
the value of the field.
Reads a 64-bit IEEE 754 floating point number.
name of the field.
the value of the field.
Reads a 16-bit two's complement signed integer.
name of the field.
the value of the field.
Reads a 32-bit two's complement signed integer.
name of the field.
the value of the field.
Reads a 64-bit two's complement signed integer.
name of the field.
the value of the field.
Reads an 8-bit two's complement signed integer.
name of the field.
the value of the field.
Reads a nullable boolean.
name of the field.
the value of the field.
Reads a nullable 32-bit IEEE 754 floating point number.
name of the field.
the value of the field.
Reads a nullable 64-bit IEEE 754 floating point number.
name of the field.
the value of the field.
Reads a nullable 16-bit two's complement signed integer.
name of the field.
the value of the field.
Reads a nullable 32-bit two's complement signed integer.
name of the field.
the value of the field.
Reads a nullable 64-bit two's complement signed integer.
name of the field.
the value of the field.
Reads a nullable 8-bit two's complement signed integer.
name of the field.
the value of the field.
Reads a UTF-8 encoded string.
name of the field.
the value of the field.
Reads a LocalDateTime consisting of date and time.
name of the field.
the value of the field.
Reads a OffsetDateTime consisting of date, time and timezone offset.
name of the field.
the value of the field.
Generated using TypeDoc
Provides means of reading compact serialized fields from the binary data.
Read operations might throw HazelcastSerializationError when a field with the given name is not found or there is a type mismatch. On such occasions, one might handle this case via the getFieldKind method. Handling this situation might be especially useful if the class might evolve in future, either by adding or removing fields.
This API is currently in Beta and can change at any time.