/** * Returns the fourth placing horse for the given race. */ private static Horse getFourth(Race r) { return(r.getFourth()); }
/** * Returns the placing horse for the given race. */ private static Horse getPlace(Race r) { return(r.getPlace()); }
/** * Returns the showing horse for the given race. */ private static Horse getShow(Race r) { return(r.getShow()); }
/** * Returns the winning horse for the given race. */ private static Horse getWin(Race r) { return(r.getWin()); }