Package models.transit

Examples of models.transit.GtfsRouteType


      List<Object[]> result = Route.em().createNativeQuery("SELECT id, routetype, routetype_id FROM route;").getResultList();

      for(Object[] o : result) {
        Logger.info(o[0].toString() + " " + o[1].toString());
       
        GtfsRouteType gtfsRouteType = GtfsRouteType.valueOf(o[1].toString());
   
        Integer gtfsTypeId;
       
        switch(gtfsRouteType)
          {
View Full Code Here

TOP

Related Classes of models.transit.GtfsRouteType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.