Enum ContainerTransportCO2BreakdownEnum
- java.lang.Object
-
- java.lang.Enum<ContainerTransportCO2BreakdownEnum>
-
- org.opentrafficsim.water.statistics.ContainerTransportCO2BreakdownEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<ContainerTransportCO2BreakdownEnum>
public enum ContainerTransportCO2BreakdownEnum extends Enum<ContainerTransportCO2BreakdownEnum>
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
, SVN $Revision: 93 $ $Author: averbraeck $ $Date: 2014-03-07 07:46:54 +0100 (Fri, 07 Mar 2014) $ - Author:
- Alexander Verbraeck
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HUB_TERMINAL
INLAND_TERMINAL
RTM_TERMINAL
SAILING_HINTERLAND
SAILING_HUB_RTM
TRANSPORT_SHIPPER
TRUCK_REPLACEMENT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
String
getExplanation()
static ContainerTransportCO2BreakdownEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static ContainerTransportCO2BreakdownEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRANSPORT_SHIPPER
public static final ContainerTransportCO2BreakdownEnum TRANSPORT_SHIPPER
-
INLAND_TERMINAL
public static final ContainerTransportCO2BreakdownEnum INLAND_TERMINAL
-
SAILING_HINTERLAND
public static final ContainerTransportCO2BreakdownEnum SAILING_HINTERLAND
-
HUB_TERMINAL
public static final ContainerTransportCO2BreakdownEnum HUB_TERMINAL
-
SAILING_HUB_RTM
public static final ContainerTransportCO2BreakdownEnum SAILING_HUB_RTM
-
RTM_TERMINAL
public static final ContainerTransportCO2BreakdownEnum RTM_TERMINAL
-
TRUCK_REPLACEMENT
public static final ContainerTransportCO2BreakdownEnum TRUCK_REPLACEMENT
-
-
Method Detail
-
values
public static ContainerTransportCO2BreakdownEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ContainerTransportCO2BreakdownEnum c : ContainerTransportCO2BreakdownEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContainerTransportCO2BreakdownEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getDescription
public String getDescription()
- Returns:
- description
-
getExplanation
public String getExplanation()
- Returns:
- explanation
-
-