final V entity = instantiateFromColumn(iterator.next());
while (iterator.hasNext()) {
final HColumn<String, byte[]> column = iterator.next();
final PersistableField field = fieldsMap.get(column.getName());
if (field != null) {
final SerializedValue serializedValue = (SerializedValue) ObjectSerializer.get().fromBytes(column.getValue());
final Object fieldValue = serializedValue.getValue(context);
field.setValue(entity, fieldValue);
} else {
LOGGER.warn("Column {} not mapped to a persistent field on class {}!", column.getName(), entity.getClass().getCanonicalName());
}
}