* @see {@link #toByteArray()}
*/
public static Index parseIndexFrom(final byte[] bytes)
throws DeserializationException {
try {
IndexSchema is = IndexSchema.newBuilder()
.mergeFrom(bytes, 0, bytes.length).build();
return convert(is);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw new DeserializationException(e);
}