MATSIM
VehicleSchemaV2Names.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 VehicleSchemaV2Names {
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 STANDINGROOM = "standingRoomInPersons";
33  public static final String VOLUME = "volumeInCubicMeters";
34  public static final String WEIGHT = "weightInTons";
35  public static final String OTHER = "other";
36  public static final String LENGTH = "length";
37  public static final String METER = "meter";
38  public static final String WIDTH = "width";
39  public static final String COSTINFORMATION = "costInformation";
40  public static final String FIXEDCOSTSPERDAY = "fixedCostsPerDay";
41  public static final String COSTSPERMETER = "costsPerMeter";
42  public static final String COSTSPERSECOND = "costsPerSecond";
43  public static final String MAXIMUMVELOCITY = "maximumVelocity";
44  public static final String METERPERSECOND = "meterPerSecond";
45  public static final String ENGINEINFORMATION = "engineInformation";
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 MODE = "mode";
50  public static final String PASSENGERCAREQUIVALENTS = "passengerCarEquivalents";
51  public static final String PCE = "pce";
52  public static final String NETWORKMODE = "networkMode";
53  public static final String FLOWEFFICIENCYFACTOR = "flowEfficiencyFactor";
54  public static final String FACTOR = "factor";
55  public final static String ATTRIBUTES = "attributes";
56  public final static String ATTRIBUTE = "attribute";
57 
58 }