public Storable(DataType type, SerializerFunction serializer, DeserializerFunction deserializer) { this.type = type; this.serializer = serializer; this.deserializer = deserializer; }
public Storable(RepresentationType type, SerializerFunction serializer, DeserializerFunction deserializer) { this.dataType = type; this.serializer = serializer; this.deserializer = deserializer; }