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: 97 $ $Author: averbraeck $
15   * $Date: 2014-03-11 14:52:52 +0100 (Tue, 11 Mar 2014) $
16   **/
17  @SuppressWarnings("javadoc")
18  public enum ContainerTransportFeeBreakdownEnum {
19  
20      TRANSPORT_SHIPPER("voor/natransport", "tarief voor voor/natransport tussen verlader en inlandterminal met de truck"),
21  
22      INLAND_TERMINAL("move inlandterminal",
23              "tarief voor opslag container op de inlandterminal, horizontaal transport, en kadeoverslag (1 move)"),
24  
25      SAILING_HINTERLAND("vaartarief",
26              "tarief voor het vervoeren van de container op het schip (inclusief het varen in Rtm "
27                      + "als er niet van een hub gebruik wordt gemaakt, en inclusief havengelden)"),
28  
29      HUB_TERMINAL("moves hub",
30              "tarief voor opslag container op de hubterminal, horizontaal transport, en kadeoverslag (2 moves)"),
31  
32      SAILING_HUB_RTM("vaartarief Hub-Rtm",
33              "tarief voor het varen van de container op het schip tussen Rtm en eerste hub-terminal "
34                      + "(als van toepassing, en inclusief havengelden)"),
35  
36      RTM_TERMINAL("move Rtm",
37              "tarief voor het laden/lossen van de container aan de kade van de terminal in Rtm (1 move)"),
38  
39      TRUCK_REPLACEMENT("vervangend truckvervoer", "tarief voor vervangend trucktransport");
40  
41      /*-
42      INLAND_PORT_DUES("tarief tbv havengelden inlandterminals",
43              "aandeel van de kosten voor het tarief tbv de havengelden bij de achterlandterminals, "
44                      + "inclusief havengelden voor hop-terminals"),
45  
46      HUB_PORT_DUES("tarief tbv havengelden hubterminal", "aandeel van het tarief tbv de kosten voor "
47              + "de havengelden bij hubterminal(s)"),
48  
49      RTM_PORT_DUES("tarief tbv havengelden Rtm", "aandeel van het tarief tbv de kosten voor de havengelden in Rtm");
50       */
51  
52      /** description for screen */
53      private final String description;
54  
55      /** longer explanation */
56      private final String explanation;
57  
58      /**
59       * @param description short description of the statistic
60       * @param explanation longer description of the statistic
61       */
62      private ContainerTransportFeeBreakdownEnum(final String description, final String explanation)
63      {
64          this.description = description;
65          this.explanation = explanation;
66      }
67  
68      /**
69       * @return description
70       */
71      public String getDescription()
72      {
73          return this.description;
74      }
75  
76      /**
77       * @return explanation
78       */
79      public String getExplanation()
80      {
81          return this.explanation;
82      }
83  
84  }