MATSIM
Classes | Public Member Functions | Private Attributes | List of all members
org.matsim.vehicles.EngineInformation Class Reference
Inheritance diagram for org.matsim.vehicles.EngineInformation:
Inheritance graph
[legend]

Classes

enum  FuelType
 

Public Member Functions

FuelType getFuelType ()
 
double getFuelConsumption ()
 
EngineInformation setFuelType (FuelType fueltype)
 
EngineInformation setFuelConsumption (double literPerMeter)
 
Attributes getAttributes ()
 

Private Attributes

Attributes attributes = new AttributesImpl()
 

Detailed Description

Author
dgrether

Definition at line 29 of file EngineInformation.java.

Member Function Documentation

◆ getFuelType()

FuelType org.matsim.vehicles.EngineInformation.getFuelType ( )

Definition at line 36 of file EngineInformation.java.

36  {
37  return VehicleUtils.getFuelType( this ) ;
38  }

◆ getFuelConsumption()

double org.matsim.vehicles.EngineInformation.getFuelConsumption ( )

Definition at line 40 of file EngineInformation.java.

References org.matsim.vehicles.VehicleUtils.getFuelConsumption().

40  {
41  return VehicleUtils.getFuelConsumption(this);
42  }
Here is the call graph for this function:

◆ setFuelType()

EngineInformation org.matsim.vehicles.EngineInformation.setFuelType ( FuelType  fueltype)

Definition at line 44 of file EngineInformation.java.

44  {
45  VehicleUtils.setFuelType(this, fueltype);
46  return this ;
47  }

◆ setFuelConsumption()

EngineInformation org.matsim.vehicles.EngineInformation.setFuelConsumption ( double  literPerMeter)

Definition at line 49 of file EngineInformation.java.

References org.matsim.vehicles.VehicleUtils.setFuelConsumption().

49  {
50  VehicleUtils.setFuelConsumption(this, literPerMeter);
51  return this ;
52  }
Here is the call graph for this function:

◆ getAttributes()

Attributes org.matsim.vehicles.EngineInformation.getAttributes ( )

Member Data Documentation

◆ attributes

Attributes org.matsim.vehicles.EngineInformation.attributes = new AttributesImpl()
private

The documentation for this class was generated from the following file: