View Javadoc
1   package org.opentrafficsim.water.statistics;
2   
3   /**
4    * <br>
5    * Copyright (c) 2013-2014 Rijkswaterstaat - Dienst Water, Verkeer en Leefomgeving. All rights reserved. <br>
6    * Some parts of the software (c) 2011-2014 TU Delft, Faculty of TBM, Systems and Simulation <br>
7    * This software is licensed without restrictions to Nederlandse Organisatie voor Toegepast Natuurwetenschappelijk Onderzoek TNO
8    * (TNO), Erasmus University Rotterdam, Delft University of Technology, Panteia B.V., Stichting Projecten Binnenvaart, Ab Ovo
9    * Nederland B.V., Modality Software Solutions B.V., and Rijkswaterstaat - Dienst Water, Verkeer en Leefomgeving, including the
10   * right to sub-license sources and derived products to third parties. <br>
11   * @version Mar 24, 2013 <br>
12   * @author <a href="http://tudelft.nl/averbraeck">Alexander Verbraeck </a>
13   * @version SVN $Revision: 93 $ $Author: averbraeck $ $Date: 2014-03-07 07:46:54 +0100 (Fri, 07 Mar 2014) $
14   **/
15  @SuppressWarnings("javadoc")
16  public enum ContainerTransportCO2BreakdownEnum
17  {
18  
19      TRANSPORT_SHIPPER("voor/natransport", "CO2-productie voor voor/natransport tussen verlader en inlandterminal met de truck"),
20  
21      INLAND_TERMINAL("inlandterminal",
22              "CO2-productie voor terminaltransport op de inlandterminal, tussen vrachtwagen en stack, tussen stack en kade, en tussen kade en schip (1 waterzijdige move)"),
23  
24      SAILING_HINTERLAND("varen",
25              "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)"),
26  
27      HUB_TERMINAL("hubterminal",
28              "CO2-productie voor terminaltransport op de hubterminal, tussen stack en kade (2 waterzijdige moves, als van toepassing)"),
29  
30      SAILING_HUB_RTM("varen Hub-Rtm",
31              "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)"),
32  
33      RTM_TERMINAL("terminal Rtm", "CO2-productie voor het laden/lossen van de container aan de kade van de terminal in Rtm"),
34  
35      TRUCK_REPLACEMENT("vervangend truckvervoer", "CO2-productie voor vervangend trucktransport");
36  
37      /** description for screen */
38      private final String description;
39  
40      /** longer explanation */
41      private final String explanation;
42  
43      /**
44       * @param description String; short description of the statistic
45       * @param explanation String; longer description of the statistic
46       */
47      private ContainerTransportCO2BreakdownEnum(final String description, final String explanation)
48      {
49          this.description = description;
50          this.explanation = explanation;
51      }
52  
53      /**
54       * @return description
55       */
56      public String getDescription()
57      {
58          return this.description;
59      }
60  
61      /**
62       * @return explanation
63       */
64      public String getExplanation()
65      {
66          return this.explanation;
67      }
68  
69  }