@Beta public interface CompactReader
Read operations might throw HazelcastSerializationException
when a field with the given name is not found or there is a type mismatch. On such
occasions, one might provide default values to the read methods to return it in case
of the failure scenarios described above. Providing default values might be especially
useful, if the class might evolve in future, either by adding or removing fields.
Modifier and Type | Method and Description |
---|---|
boolean[] |
readArrayOfBoolean(String fieldName)
Reads an array of booleans.
|
boolean[] |
readArrayOfBoolean(String fieldName,
boolean[] defaultValue)
Reads an array of booleans or returns the default value.
|
<T> T[] |
readArrayOfCompact(String fieldName,
Class<T> componentType)
Reads an array of compact objects.
|
<T> T[] |
readArrayOfCompact(String fieldName,
Class<T> componentType,
T[] defaultValue)
Reads an array of compact objects or returns the default value.
|
LocalDate[] |
readArrayOfDate(String fieldName)
Reads an array of dates consisting of year, month, and day.
|
LocalDate[] |
readArrayOfDate(String fieldName,
LocalDate[] defaultValue)
Reads an array of dates consisting of year, month, and day or returns the default value.
|
BigDecimal[] |
readArrayOfDecimal(String fieldName)
Reads an array of arbitrary precision and scale floating point numbers.
|
BigDecimal[] |
readArrayOfDecimal(String fieldName,
BigDecimal[] defaultValue)
Reads an array of arbitrary precision and scale floating point numbers or returns the default value.
|
float[] |
readArrayOfFloat32(String fieldName)
Reads an array of 32-bit IEEE 754 floating point numbers.
|
float[] |
readArrayOfFloat32(String fieldName,
float[] defaultValue)
Reads an array of 32-bit IEEE 754 floating point numbers or returns the default value.
|
double[] |
readArrayOfFloat64(String fieldName)
Reads an array of 64-bit IEEE 754 floating point numbers.
|
double[] |
readArrayOfFloat64(String fieldName,
double[] defaultValue)
Reads an array of 64-bit IEEE 754 floating point numbers or returns the default value.
|
short[] |
readArrayOfInt16(String fieldName)
Reads an array of 16-bit two's complement signed integers.
|
short[] |
readArrayOfInt16(String fieldName,
short[] defaultValue)
Reads an array of 16-bit two's complement signed integers or returns the default value.
|
int[] |
readArrayOfInt32(String fieldName)
Reads an array of 32-bit two's complement signed integers.
|
int[] |
readArrayOfInt32(String fieldName,
int[] defaultValue)
Reads an array of 32-bit two's complement signed integers or returns the default value.
|
long[] |
readArrayOfInt64(String fieldName)
Reads an array of 64-bit two's complement signed integers.
|
long[] |
readArrayOfInt64(String fieldName,
long[] defaultValue)
Reads an array of 64-bit two's complement signed integers or returns the default value.
|
byte[] |
readArrayOfInt8(String fieldName)
Reads an array of 8-bit two's complement signed integers.
|
byte[] |
readArrayOfInt8(String fieldName,
byte[] defaultValue)
Reads an array of 8-bit two's complement signed integers or returns the default value.
|
Boolean[] |
readArrayOfNullableBoolean(String fieldName)
Reads a nullable array of nullable booleans.
|
Boolean[] |
readArrayOfNullableBoolean(String fieldName,
Boolean[] defaultValue)
Reads a nullable array of nullable booleans or returns the default value.
|
Float[] |
readArrayOfNullableFloat32(String fieldName)
Reads a nullable array of nullable 32-bit IEEE 754 floating point numbers.
|
Float[] |
readArrayOfNullableFloat32(String fieldName,
Float[] defaultValue)
Reads a nullable array of nullable 32-bit IEEE 754 floating point numbers or returns the default value.
|
Double[] |
readArrayOfNullableFloat64(String fieldName)
Reads a nullable array of nullable 64-bit IEEE 754 floating point numbers.
|
Double[] |
readArrayOfNullableFloat64(String fieldName,
Double[] defaultValue)
Reads a nullable array of nullable 64-bit IEEE 754 floating point numbers or returns the default value.
|
Short[] |
readArrayOfNullableInt16(String fieldName)
Reads a nullable array of nullable 16-bit two's complement signed integers.
|
Short[] |
readArrayOfNullableInt16(String fieldName,
Short[] defaultValue)
Reads a nullable array of nullable 16-bit two's complement signed integers or returns the default value.
|
Integer[] |
readArrayOfNullableInt32(String fieldName)
Reads a nullable array of nullable 32-bit two's complement signed integers.
|
Integer[] |
readArrayOfNullableInt32(String fieldName,
Integer[] defaultValue)
Reads a nullable array of nullable 32-bit two's complement signed integers or returns the default value.
|
Long[] |
readArrayOfNullableInt64(String fieldName)
Reads a nullable array of nullable 64-bit two's complement signed integers.
|
Long[] |
readArrayOfNullableInt64(String fieldName,
Long[] defaultValue)
Reads a nullable array of nullable 64-bit two's complement signed integers or returns the default value.
|
Byte[] |
readArrayOfNullableInt8(String fieldName)
Reads a nullable array of nullable 8-bit two's complement signed integers.
|
Byte[] |
readArrayOfNullableInt8(String fieldName,
Byte[] defaultValue)
Reads a nullable array of nullable 8-bit two's complement signed integers or returns the default value.
|
String[] |
readArrayOfString(String fieldName)
Reads an array of UTF-8 encoded strings.
|
String[] |
readArrayOfString(String fieldName,
String[] defaultValue)
Reads an array of UTF-8 encoded strings or returns the default value.
|
LocalTime[] |
readArrayOfTime(String fieldName)
Reads an array of times consisting of hour, minute, second, and nanoseconds
|
LocalTime[] |
readArrayOfTime(String fieldName,
LocalTime[] defaultValue)
Reads an array of times consisting of hour, minute, second, and nanoseconds or returns the default value.
|
LocalDateTime[] |
readArrayOfTimestamp(String fieldName)
Reads an array of timestamps consisting of date and time.
|
LocalDateTime[] |
readArrayOfTimestamp(String fieldName,
LocalDateTime[] defaultValue)
Reads an array of timestamps consisting of date and time or returns the default value.
|
OffsetDateTime[] |
readArrayOfTimestampWithTimezone(String fieldName)
Reads an array of timestamps with timezone consisting of date, time and timezone offset.
|
OffsetDateTime[] |
readArrayOfTimestampWithTimezone(String fieldName,
OffsetDateTime[] defaultValue)
Reads an array of timestamps with timezone consisting of date, time and timezone offset or returns the default value.
|
boolean |
readBoolean(String fieldName)
Reads a boolean.
|
boolean |
readBoolean(String fieldName,
boolean defaultValue)
Reads a boolean or returns the default value.
|
<T> T |
readCompact(String fieldName)
Reads a compact object
|
<T> T |
readCompact(String fieldName,
T defaultValue)
Reads a compact object
or returns the default value
|
LocalDate |
readDate(String fieldName)
Reads a date consisting of year, month, and day.
|
LocalDate |
readDate(String fieldName,
LocalDate defaultValue)
Reads a date consisting of year, month, and day or returns the default value.
|
BigDecimal |
readDecimal(String fieldName)
Reads an arbitrary precision and scale floating point number.
|
BigDecimal |
readDecimal(String fieldName,
BigDecimal defaultValue)
Reads an arbitrary precision and scale floating point number
or returns the default value.
|
float |
readFloat32(String fieldName)
Reads a 32-bit IEEE 754 floating point number.
|
float |
readFloat32(String fieldName,
float defaultValue)
Reads a 32-bit IEEE 754 floating point number or returns the default value.
|
double |
readFloat64(String fieldName)
Reads a 64-bit IEEE 754 floating point number.
|
double |
readFloat64(String fieldName,
double defaultValue)
Reads a 64-bit IEEE 754 floating point number or returns the default value.
|
short |
readInt16(String fieldName)
Reads a 16-bit two's complement signed integer.
|
short |
readInt16(String fieldName,
short defaultValue)
Reads a 16-bit two's complement signed integer or returns the default value.
|
int |
readInt32(String fieldName)
Reads a 32-bit two's complement signed integer.
|
int |
readInt32(String fieldName,
int defaultValue)
Reads a 32-bit two's complement signed integer or returns the default value.
|
long |
readInt64(String fieldName)
Reads a 64-bit two's complement signed integer.
|
long |
readInt64(String fieldName,
long defaultValue)
Reads a 64-bit two's complement signed integer or returns the default value.
|
byte |
readInt8(String fieldName)
Reads an 8-bit two's complement signed integer.
|
byte |
readInt8(String fieldName,
byte defaultValue)
Reads an 8-bit two's complement signed integer or returns the default value.
|
Boolean |
readNullableBoolean(String fieldName)
Reads a nullable boolean.
|
Boolean |
readNullableBoolean(String fieldName,
Boolean defaultValue)
Reads a nullable boolean or returns the default value.
|
Float |
readNullableFloat32(String fieldName)
Reads a nullable 32-bit IEEE 754 floating point number.
|
Float |
readNullableFloat32(String fieldName,
Float defaultValue)
Reads a nullable 32-bit IEEE 754 floating point number or returns the default value.
|
Double |
readNullableFloat64(String fieldName)
Reads a nullable 64-bit IEEE 754 floating point number.
|
Double |
readNullableFloat64(String fieldName,
Double defaultValue)
Reads a nullable 64-bit IEEE 754 floating point number or returns the default value.
|
Short |
readNullableInt16(String fieldName)
Reads a nullable 16-bit two's complement signed integer.
|
Short |
readNullableInt16(String fieldName,
Short defaultValue)
Reads a nullable 16-bit two's complement signed integer or returns the default value.
|
Integer |
readNullableInt32(String fieldName)
Reads a nullable 32-bit two's complement signed integer.
|
Integer |
readNullableInt32(String fieldName,
Integer defaultValue)
Reads a nullable 32-bit two's complement signed integer or returns the default value.
|
Long |
readNullableInt64(String fieldName)
Reads a nullable 64-bit two's complement signed integer.
|
Long |
readNullableInt64(String fieldName,
Long defaultValue)
Reads a nullable 64-bit two's complement signed integer or returns the default value.
|
Byte |
readNullableInt8(String fieldName)
Reads a nullable 8-bit two's complement signed integer.
|
Byte |
readNullableInt8(String fieldName,
Byte defaultValue)
Reads a nullable 8-bit two's complement signed integer or returns the default value.
|
String |
readString(String fieldName)
Reads an UTF-8 encoded string.
|
String |
readString(String fieldName,
String defaultValue)
Reads an UTF-8 encoded string or returns the default value.
|
LocalTime |
readTime(String fieldName)
Reads a time consisting of hour, minute, second, and nano seconds.
|
LocalTime |
readTime(String fieldName,
LocalTime defaultValue)
Reads a time consisting of hour, minute, second, and nano seconds
or returns the default value.
|
LocalDateTime |
readTimestamp(String fieldName)
Reads a timestamp consisting of date and time.
|
LocalDateTime |
readTimestamp(String fieldName,
LocalDateTime defaultValue)
Reads a timestamp consisting of date and time or returns the default value.
|
OffsetDateTime |
readTimestampWithTimezone(String fieldName)
Reads a timestamp with timezone consisting of date, time and timezone offset.
|
OffsetDateTime |
readTimestampWithTimezone(String fieldName,
OffsetDateTime defaultValue)
Reads a timestamp with timezone consisting of date, time and timezone offset
or returns the default value.
|
boolean readBoolean(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.boolean readBoolean(@Nonnull String fieldName, boolean defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.byte readInt8(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.byte readInt8(@Nonnull String fieldName, byte defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.short readInt16(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.short readInt16(@Nonnull String fieldName, short defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.int readInt32(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.int readInt32(@Nonnull String fieldName, int defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.long readInt64(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.long readInt64(@Nonnull String fieldName, long defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.float readFloat32(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.float readFloat32(@Nonnull String fieldName, float defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.double readFloat64(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.double readFloat64(@Nonnull String fieldName, double defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable String readString(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable String readString(@Nonnull String fieldName, @Nullable String defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable BigDecimal readDecimal(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable BigDecimal readDecimal(@Nonnull String fieldName, @Nullable BigDecimal defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable LocalTime readTime(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable LocalTime readTime(@Nonnull String fieldName, @Nullable LocalTime defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable LocalDate readDate(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable LocalDate readDate(@Nonnull String fieldName, @Nullable LocalDate defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable LocalDateTime readTimestamp(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable LocalDateTime readTimestamp(@Nonnull String fieldName, @Nullable LocalDateTime defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable OffsetDateTime readTimestampWithTimezone(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable OffsetDateTime readTimestampWithTimezone(@Nonnull String fieldName, @Nullable OffsetDateTime defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable <T> T readCompact(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.HazelcastException
- if the object cannot be created.@Nullable <T> T readCompact(@Nonnull String fieldName, @Nullable T defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable boolean[] readArrayOfBoolean(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable boolean[] readArrayOfBoolean(@Nonnull String fieldName, @Nullable boolean[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable byte[] readArrayOfInt8(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable byte[] readArrayOfInt8(@Nonnull String fieldName, @Nullable byte[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable short[] readArrayOfInt16(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable short[] readArrayOfInt16(@Nonnull String fieldName, @Nullable short[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable int[] readArrayOfInt32(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable int[] readArrayOfInt32(@Nonnull String fieldName, @Nullable int[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable long[] readArrayOfInt64(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable long[] readArrayOfInt64(@Nonnull String fieldName, @Nullable long[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable float[] readArrayOfFloat32(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable float[] readArrayOfFloat32(@Nonnull String fieldName, @Nullable float[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable double[] readArrayOfFloat64(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable double[] readArrayOfFloat64(@Nonnull String fieldName, @Nullable double[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable String[] readArrayOfString(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable String[] readArrayOfString(@Nonnull String fieldName, @Nullable String[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable BigDecimal[] readArrayOfDecimal(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable BigDecimal[] readArrayOfDecimal(@Nonnull String fieldName, @Nullable BigDecimal[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable LocalTime[] readArrayOfTime(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable LocalTime[] readArrayOfTime(@Nonnull String fieldName, @Nullable LocalTime[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable LocalDate[] readArrayOfDate(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable LocalDate[] readArrayOfDate(@Nonnull String fieldName, @Nullable LocalDate[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable LocalDateTime[] readArrayOfTimestamp(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable LocalDateTime[] readArrayOfTimestamp(@Nonnull String fieldName, @Nullable LocalDateTime[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable OffsetDateTime[] readArrayOfTimestampWithTimezone(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable OffsetDateTime[] readArrayOfTimestampWithTimezone(@Nonnull String fieldName, @Nullable OffsetDateTime[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable <T> T[] readArrayOfCompact(@Nonnull String fieldName, @Nullable Class<T> componentType)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable <T> T[] readArrayOfCompact(@Nonnull String fieldName, @Nullable Class<T> componentType, @Nullable T[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Boolean readNullableBoolean(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Boolean readNullableBoolean(@Nonnull String fieldName, @Nullable Boolean defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Byte readNullableInt8(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Byte readNullableInt8(@Nonnull String fieldName, @Nullable Byte defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.Short readNullableInt16(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.Short readNullableInt16(@Nonnull String fieldName, @Nullable Short defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Integer readNullableInt32(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Integer readNullableInt32(@Nonnull String fieldName, @Nullable Integer defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Long readNullableInt64(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Long readNullableInt64(@Nonnull String fieldName, @Nullable Long defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Float readNullableFloat32(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Float readNullableFloat32(@Nonnull String fieldName, @Nullable Float defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Double readNullableFloat64(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Double readNullableFloat64(@Nonnull String fieldName, @Nullable Double defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Boolean[] readArrayOfNullableBoolean(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Boolean[] readArrayOfNullableBoolean(@Nonnull String fieldName, @Nullable Boolean[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Byte[] readArrayOfNullableInt8(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Byte[] readArrayOfNullableInt8(@Nonnull String fieldName, @Nullable Byte[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Short[] readArrayOfNullableInt16(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Short[] readArrayOfNullableInt16(@Nonnull String fieldName, @Nullable Short[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Integer[] readArrayOfNullableInt32(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Integer[] readArrayOfNullableInt32(@Nonnull String fieldName, @Nullable Integer[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Long[] readArrayOfNullableInt64(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Long[] readArrayOfNullableInt64(@Nonnull String fieldName, @Nullable Long[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Float[] readArrayOfNullableFloat32(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Float[] readArrayOfNullableFloat32(@Nonnull String fieldName, @Nullable Float[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.@Nullable Double[] readArrayOfNullableFloat64(@Nonnull String fieldName)
fieldName
- name of the field.HazelcastSerializationException
- if the field does not exist in the schema
or the type of the field does not match
with the one defined in the schema.@Nullable Double[] readArrayOfNullableFloat64(@Nonnull String fieldName, @Nullable Double[] defaultValue)
fieldName
- name of the field.defaultValue
- default value to return if the field with the given name
does not exist in the schema or the type of the field does
not match with the one defined in the schema.Copyright © 2022 Hazelcast, Inc.. All rights reserved.