5051525354555657
SetValue command = new SetValue(id, db, key, index, value); command.execute(); } public void removeFirst(int id, int db, String key) { RemoveValue command = new RemoveValue(id, db, key, true); command.execute(); }
5556575859606162
RemoveValue command = new RemoveValue(id, db, key, true); command.execute(); } public void removeLast(int id, int db, String key) { RemoveValue command = new RemoveValue(id, db, key, false); command.execute(); }