// Read in the key
String key = StringSerializer.get(buf);
// Read in the fields in the value
ColumnVisibility vis = new ColumnVisibility(valueSerializer.readObjectData(buf, byte[].class));
byte[] value = valueSerializer.readObjectData(buf, byte[].class);
map.put(key, new FieldValue(vis, value));
}
}