Interface BinaryFieldStorer<T>
-
- Type Parameters:
T- The class the handled field belongs to.
- All Superinterfaces:
BinaryValueStorer
- All Known Implementing Classes:
BinaryFieldStorerThrowableStackTraceCreator.AbstractBinaryFieldStorerThrowableStackTrace,BinaryFieldStorerThrowableStackTraceCreator.BinaryFieldStorerThrowableStackTrace_DEFAULT,BinaryFieldStorerThrowableStackTraceCreator.BinaryFieldStorerThrowableStackTrace_EAGER,BinaryFieldStorerThrowableStackTraceCreator.BinaryFieldStorerThrowableStackTrace_EAGER_REVERSED,BinaryFieldStorerThrowableStackTraceCreator.BinaryFieldStorerThrowableStackTrace_REVERSED
public interface BinaryFieldStorer<T> extends BinaryValueStorer
BinaryFieldStorer are custom implementations of BinaryValueStorer for a specific field. They are used by the automatically created binary type handlers instead of the default BinaryFieldStorer. To register a custom BinaryFieldStorer seeBinaryFieldHandlerProvider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldgetField()Get the Field that is handled by this BinaryFieldStorer-
Methods inherited from interface org.eclipse.serializer.persistence.binary.types.BinaryValueStorer
storeValueFromMemory
-
-
-
-
Method Detail
-
getField
Field getField()
Get the Field that is handled by this BinaryFieldStorer- Returns:
- the handled field.
-
-