Package output
Enum AbstractOutput.Type
- java.lang.Object
-
- java.lang.Enum<AbstractOutput.Type>
-
- output.AbstractOutput.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractOutput.Type>
- Enclosing class:
- AbstractOutput
public static enum AbstractOutput.Type extends Enum<AbstractOutput.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description actuator
cell_flw
cell_lanechange
cell_sumveh
cell_sumvehdwn
cell_veh
controller
lanegroup_flw
lanegroup_sumveh
lanegroup_sumvehdwn
lanegroup_veh
link_flw
link_sumveh
link_veh
path_travel_time
sensor
vehicle_class
vehicle_events
vehicle_travel_time
vht
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractOutput.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractOutput.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
link_flw
public static final AbstractOutput.Type link_flw
-
link_veh
public static final AbstractOutput.Type link_veh
-
link_sumveh
public static final AbstractOutput.Type link_sumveh
-
vht
public static final AbstractOutput.Type vht
-
lanegroup_flw
public static final AbstractOutput.Type lanegroup_flw
-
lanegroup_veh
public static final AbstractOutput.Type lanegroup_veh
-
lanegroup_sumveh
public static final AbstractOutput.Type lanegroup_sumveh
-
lanegroup_sumvehdwn
public static final AbstractOutput.Type lanegroup_sumvehdwn
-
cell_flw
public static final AbstractOutput.Type cell_flw
-
cell_veh
public static final AbstractOutput.Type cell_veh
-
cell_sumveh
public static final AbstractOutput.Type cell_sumveh
-
cell_sumvehdwn
public static final AbstractOutput.Type cell_sumvehdwn
-
cell_lanechange
public static final AbstractOutput.Type cell_lanechange
-
path_travel_time
public static final AbstractOutput.Type path_travel_time
-
vehicle_events
public static final AbstractOutput.Type vehicle_events
-
vehicle_class
public static final AbstractOutput.Type vehicle_class
-
vehicle_travel_time
public static final AbstractOutput.Type vehicle_travel_time
-
controller
public static final AbstractOutput.Type controller
-
actuator
public static final AbstractOutput.Type actuator
-
sensor
public static final AbstractOutput.Type sensor
-
-
Method Detail
-
values
public static AbstractOutput.Type[] 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 (AbstractOutput.Type c : AbstractOutput.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractOutput.Type 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
-
-