public List<String> getReplay(Replay.action act, String str) { List<String> result = new List<string>(); switch(act){ case Replay.action.game: rep = new Replay(str); result = rep.getGames(); break; case Replay.action.hand: result = rep.getHands(str); break; } return result; }