Package de.gsi.serializer
Interface FieldSerialiser.TriConsumer
-
- Enclosing class:
- FieldSerialiser<R>
public static interface FieldSerialiser.TriConsumerused as lambda expression for user-level code to read/write data into the given serialiser back-end implementation- Author:
- rstein
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(IoSerialiser ioSerialiser, java.lang.Object rootObj, ClassFieldDescription field)Performs this operation on the given arguments.
-
-
-
Method Detail
-
accept
void accept(IoSerialiser ioSerialiser, java.lang.Object rootObj, ClassFieldDescription field)
Performs this operation on the given arguments.- Parameters:
ioSerialiser- the reference to the calling IoSerialiserrootObj- the specific root object reference the given field is part offield- the description for the given class member, if null then rootObj is written/read directly
-
-