* @param routeName route name
* @return route
*/
public static Route route(String routeName) {
//validate the routeName
Route route = MatchMaker.getInstance().getRoute(routeName);
if (route == null) {
throw new IllegalArgumentException("\"" + routeName + "\"" +
" is not defined as a route.");
}
return route;