MATSIM
TransportMode.java
Go to the documentation of this file.
1 /* *********************************************************************** *
2  * project: org.matsim.*
3  * TransportMode.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.api.core.v01;
22 
28 public final class TransportMode {
29 
30  public static final String car = "car";
31  public static final String ride = "ride";
32  public static final String bike = "bike";
33  public static final String motorcycle = "motorcycle" ;
34  public static final String truck = "truck" ;
35  public static final String pt = "pt";
36  public static final String drt = "drt" ;
37  public static final String taxi = "taxi" ;
38  public static final String walk = "walk";
39  public static final String transit_walk = "transit_walk";
40  public static final String train = "train";
41  public static final String ship = "ship";
42  public static final String airplane = "airplane";
43 
44 
45  @Deprecated // use non_network_walk
46  public static final String access_walk = "non_network_walk" ;
47  @Deprecated // use non_network_walk
48  public static final String egress_walk = "non_network_walk" ;
49  // (The directionality is not useful: what may be an egress_walk from the point of view of drt may be an access_walk from the point of view of pt.
50  // kai, jun'19)
51 
52  // non_network_walk as access/egress to modes other than walk on the network was replaced by walk. - kn/gl-nov'19
53 
54  public static final String non_network_walk = "non_network_walk" ;
55 
56  public static final String other = "other";
57 
58  private TransportMode() {
59  // prevent creating instances of this class
60  }
61 
62 }