public void moveTrunkToBank(Account account) {
   for (Entry<Integer, Object> obj : this.getObjects().entrySet())
     account.getBank().put(obj.getKey(), obj.getValue());
   this.getObjects().clear();
 }