ByteArrayInputStream buffer = new ByteArrayInputStream(binary);
DataInputStream input = new DataInputStream(buffer);
List<Object> temp = new LinkedList<Object>();
ReadFieldImpl reader = new ReadFieldImpl(temp, input, this.conf);
reader.handle(type);
this.nullReplacement = temp.remove(0);
}
}
catch(IOException e)