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