MATSIM
Constants.java
Go to the documentation of this file.
1 /* *********************************************************************** *
2  * project: org.matsim.*
3  * TransitScheduleConstants.java
4  * *
5  * *********************************************************************** *
6  * *
7  * copyright : (C) 2009 by the members listed in the COPYING, *
8  * LICENSE and WARRANTY file. *
9  * email : info at matsim dot org *
10  * *
11  * *********************************************************************** *
12  * *
13  * This program is free software; you can redistribute it and/or modify *
14  * it under the terms of the GNU General Public License as published by *
15  * the Free Software Foundation; either version 2 of the License, or *
16  * (at your option) any later version. *
17  * See also COPYING, LICENSE and WARRANTY file *
18  * *
19  * *********************************************************************** */
20 
21 package org.matsim.pt.transitSchedule;
22 
29 abstract class Constants {
30  static final String TRANSIT_STOPS = "transitStops";
31  static final String STOP_FACILITY = "stopFacility";
32  static final String TRANSIT_SCHEDULE = "transitSchedule";
33  static final String TRANSIT_LINE = "transitLine";
34  static final String TRANSIT_ROUTE = "transitRoute";
35  static final String DESCRIPTION = "description";
36  static final String ROUTE_PROFILE = "routeProfile";
37  static final String STOP = "stop";
38  static final String ROUTE = "route";
39  static final String LINK = "link";
40  static final String DEPARTURES = "departures";
41  static final String DEPARTURE = "departure";
42  static final String ID = "id";
43  static final String X = "x";
44  static final String Y = "y";
45  static final String Z = "z";
46  static final String NAME = "name";
47  static final String REF_ID = "refId";
48  static final String LINK_REF_ID = "linkRefId";
49  static final String TRANSPORT_MODE = "transportMode";
50  static final String DEPARTURE_TIME = "departureTime";
51  static final String VEHICLE_REF_ID = "vehicleRefId";
52  static final String DEPARTURE_OFFSET = "departureOffset";
53  static final String ARRIVAL_OFFSET = "arrivalOffset";
54  static final String ALLOW_BOARDING = "allowBoarding";
55  static final String ALLOW_ALIGHTING = "allowAlighting";
56  static final String AWAIT_DEPARTURE = "awaitDeparture";
57  static final String IS_BLOCKING = "isBlocking";
58  static final String STOP_AREA_ID = "stopAreaId";
59  static final String ATTRIBUTES = "attributes";
60  static final String ATTRIBUTE = "attribute";
61  static final String MINIMAL_TRANSFER_TIMES = "minimalTransferTimes";
62  static final String RELATION = "relation";
63  static final String FROM_STOP = "fromStop";
64  static final String TO_STOP = "toStop";
65  static final String TRANSFER_TIME = "transferTime";
66 }