}
protected ItemInfo defaultItemInfoFromStorable(Storable raw) {
Compression c = raw.getCompression();
Character compression = (c == null || c == Compression.NONE) ? null
: Character.valueOf(c.asChar());
long compLen = (compression == null) ? -1L : raw.getStorageLength();
StringBuilder sb = new StringBuilder(4);
if (raw.isDeleted()) {
sb.append(ItemInfo.FLAG_DELETED);
}