converter.setVehicleType(7);
} else {
try {
converter.setVehicleType(Integer.parseInt(value));
} catch (NumberFormatException ex) {
throw new ParserException("unknown vehicle type argument specified: "
+ value);
}
}
}
converter.setKeepStopsWithNoLocationInfo(cli.hasOption(ARG_KEEP_STOPS_WITH_NO_LOCATION_INFO));