MATSIM
VehicleSchemaV1Names.java
Go to the documentation of this file.
1 /* *********************************************************************** *
2  * project: org.matsim.*
3  * *
4  * *********************************************************************** *
5  * *
6  * copyright : (C) 2008 by the members listed in the COPYING, *
7  * LICENSE and WARRANTY file. *
8  * email : info at matsim dot org *
9  * *
10  * *********************************************************************** *
11  * *
12  * This program is free software; you can redistribute it and/or modify *
13  * it under the terms of the GNU General Public License as published by *
14  * the Free Software Foundation; either version 2 of the License, or *
15  * (at your option) any later version. *
16  * See also COPYING, LICENSE and WARRANTY file *
17  * *
18  * *********************************************************************** */
19 
20 package org.matsim.vehicles;
21 
25 interface VehicleSchemaV1Names {
26 
27  public static final String VEHICLEDEFINITIONS = "vehicleDefinitions";
28  public static final String VEHICLETYPE = "vehicleType";
29  public static final String DESCRIPTION = "description";
30  public static final String CAPACITY = "capacity";
31  public static final String SEATS = "seats";
32  public static final String PERSONS = "persons";
33  public static final String STANDINGROOM = "standingRoom";
34  public static final String FREIGHTCAPACITY = "freightCapacity";
35  public static final String VOLUME = "volume";
36  public static final String CUBICMETERS = "cubicMeters";
37  public static final String LENGTH = "length";
38  public static final String METER = "meter";
39  public static final String WIDTH = "width";
40  public static final String MAXIMUMVELOCITY = "maximumVelocity";
41  public static final String METERPERSECOND = "meterPerSecond";
42  public static final String ENGINEINFORMATION = "engineInformation";
43  public static final String FUELTYPE = "fuelType";
44  public static final String GASCONSUMPTION = "gasConsumption";
45  public static final String LITERPERMETER = "literPerMeter";
46  public static final String VEHICLE = "vehicle";
47  public static final String ID = "id";
48  public static final String TYPE = "type";
49  public static final String ACCESSTIME = "accessTime";
50  public static final String SECONDSPERPERSON = "secondsPerPerson";
51  public static final String EGRESSTIME = "egressTime";
52  public static final String DOOROPERATION = "doorOperation";
53  public static final String MODE = "mode";
54  public static final String PASSENGERCAREQUIVALENTS = "passengerCarEquivalents";
55  public static final String PCE = "pce";
56 
57 }