package org.opentrafficsim.water.statistics; /** *
* Copyright (c) 2013-2014 Rijkswaterstaat - Dienst Water, Verkeer en Leefomgeving. All rights reserved.
* Some parts of the software (c) 2011-2014 TU Delft, Faculty of TBM, Systems and Simulation
* This software is licensed without restrictions to Nederlandse Organisatie voor Toegepast Natuurwetenschappelijk Onderzoek TNO * (TNO), Erasmus University Rotterdam, Delft University of Technology, Panteia B.V., Stichting Projecten Binnenvaart, Ab Ovo * Nederland B.V., Modality Software Solutions B.V., and Rijkswaterstaat - Dienst Water, Verkeer en Leefomgeving, including the * right to sub-license sources and derived products to third parties.
* @version Mar 24, 2013
* @author Alexander Verbraeck * @version SVN $Revision: 93 $ $Author: averbraeck $ $Date: 2014-03-07 07:46:54 +0100 (Fri, 07 Mar 2014) $ **/ @SuppressWarnings("javadoc") public enum ContainerTransportCO2BreakdownEnum { TRANSPORT_SHIPPER("voor/natransport", "CO2-productie voor voor/natransport tussen verlader en inlandterminal met de truck"), INLAND_TERMINAL("inlandterminal", "CO2-productie voor terminaltransport op de inlandterminal, tussen vrachtwagen en stack, tussen stack en kade, en tussen kade en schip (1 waterzijdige move)"), SAILING_HINTERLAND("varen", "aandeel van de CO2-productie voor het varen van de container op het schip (inclusief stops op hop-terminals, en inclusief het varen in Rtm als er niet van een hub gebruik wordt gemaakt)"), HUB_TERMINAL("hubterminal", "CO2-productie voor terminaltransport op de hubterminal, tussen stack en kade (2 waterzijdige moves, als van toepassing)"), SAILING_HUB_RTM("varen Hub-Rtm", "aandeel van de CO2-productie voor het varen van de container op het schip tussen Rtm en eerste hub-terminal (als van toepassing, inclusief stops)"), RTM_TERMINAL("terminal Rtm", "CO2-productie voor het laden/lossen van de container aan de kade van de terminal in Rtm"), TRUCK_REPLACEMENT("vervangend truckvervoer", "CO2-productie voor vervangend trucktransport"); /** description for screen. */ private final String description; /** longer explanation. */ private final String explanation; /** * @param description String; short description of the statistic * @param explanation String; longer description of the statistic */ private ContainerTransportCO2BreakdownEnum(final String description, final String explanation) { this.description = description; this.explanation = explanation; } /** * @return description */ public String getDescription() { return this.description; } /** * @return explanation */ public String getExplanation() { return this.explanation; } }