Interface BinaryFieldSetterCreator<T>
-
- Type Parameters:
T- type
public interface BinaryFieldSetterCreator<T>BinaryFieldSetterCreator implementations are responsible to create BinaryFieldSetter for a specific field of a class. The should provide implementations consider the required byte order.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BinaryFieldSetter<?>create(boolean switchByteOrder)Create a BinaryFieldSetter thats applicable for the specified byte order.FieldgetField()Get the Field that is handled by this BinaryFieldStorerCreator
-
-
-
Method Detail
-
getField
Field getField()
Get the Field that is handled by this BinaryFieldStorerCreator- Returns:
- the handled field.
-
create
BinaryFieldSetter<?> create(boolean switchByteOrder)
Create a BinaryFieldSetter thats applicable for the specified byte order.- Parameters:
switchByteOrder- true if byte order switch.- Returns:
- a new BinaryFieldSetter.
-
-