@@ -138,10 +138,39 @@ Planned for a future release — a complete end-to-end example will be added onc
138138| short/Short | Int16 | ✅ | Serialize.writeInt16 |
139139| int/Integer | Int32 | ✅ | Serialize.writeInt32 |
140140| long/Long | Int64 | ✅ | Serialize.writeInt64 |
141+ | BigInteger | Int128 | ❌ | N/A |
142+ | BigInteger | Int256 | ❌ | N/A |
143+ | byte/Byte | UInt8 | ❌ | N/A |
144+ | short/Short | UInt16 | ❌ | N/A |
145+ | int/Integer | UInt32 | ❌ | N/A |
146+ | long/Long | UInt64 | ❌ | N/A |
147+ | BigInteger | UInt128 | ❌ | N/A |
148+ | BigInteger | UInt256 | ❌ | N/A |
149+ | BigDecimal | BigDecimal | ❌ | N/A |
150+ | BigDecimal | BigDecimal | ❌ | N/A |
151+ | BigDecimal | BigDecimal | ❌ | N/A |
152+ | BigDecimal | BigDecimal | ❌ | N/A |
141153| float/Float | Float | ✅ | Serialize.writeFloat32 |
142154| double/Double | Double | ✅ | Serialize.writeFloat64 |
143155| boolean/Boolean | Boolean | ✅ | Serialize.writeBoolean |
144156| String | String | ✅ | Serialize.writeString |
157+ | String | FixedString | ❌ | N/A |
158+ | LocalDate | Date | ❌ | N/A |
159+ | LocalDate | Date32 | ❌ | N/A |
160+ | LocalDateTime | DateTime | ❌ | N/A |
161+ | LocalDateTime | DateTime64 | ❌ | N/A |
162+ | int/Integer | Time | ❌ | N/A |
163+ | long/Long | Time64 | ❌ | N/A |
164+ | byte/Byte | Enum8 | ✅ | Serialize.writeInt8 |
165+ | int/Integer | Enum16 | ✅ | Serialize.writeInt16 |
166+ | String | JSON | ❌ | N/A |
167+ | Array<Type > | Array<Type > | ❌ | N/A |
168+ | Map<Type,Type> | Map<Type,Type> | ❌ | N/A |
169+ | Tuple<Type,..> | Map<T1,T2,..> | ❌ | N/A |
170+ | Map<Type,Type> | Map<Type,Type> | ❌ | N/A |
171+ | Object | Variant | ❌ | N/A |
172+
173+ * For date operation need to provide ZoneId.
145174
146175## Configuration Options
147176
0 commit comments