Пример #1
0
 @Override
 public String toString() {
   return "IpcVehicle ["
       + "vehicleId="
       + avl.getVehicleId()
       + ", blockId="
       + blockId
       + ", blockAssignmentMethod="
       + blockAssignmentMethod
       + ", routeId="
       + routeId
       + ", routeShortName="
       + routeShortName
       + ", tripId="
       + tripId
       + ", tripPatternId="
       + tripPatternId
       + ", directionId="
       + directionId
       + ", headsign="
       + headsign
       + ", predictable="
       + predictable
       + ", schedBasedPred="
       + schedBasedPred
       + ", realTimeSchedAdh="
       + realTimeSchedAdh
       + ", isDelayed="
       + isDelayed
       + ", isLayover="
       + isLayover
       + ", layoverDepartureTime="
       + Time.timeStrNoTimeZone(layoverDepartureTime)
       + ", nextStopId="
       + nextStopId
       + ", nextStopName="
       + nextStopName
       + ", avl="
       + avl
       + ", heading="
       + heading
       + ", vehicleType="
       + vehicleType
       + "]";
 }