com.azalient.apo.enums
Enum ResultsType
java.lang.Object
java.lang.Enum<ResultsType>
com.azalient.apo.enums.ResultsType
- All Implemented Interfaces:
- Serializable, Comparable<ResultsType>
public enum ResultsType
- extends Enum<ResultsType>
A list of all possible results type, used for naming results pages
|
Method Summary |
static ResultsType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ResultsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Scenario
public static final ResultsType Scenario
PersonTrips
public static final ResultsType PersonTrips
CyclistTrips
public static final ResultsType CyclistTrips
VehicleTrips
public static final ResultsType VehicleTrips
TransportTrips
public static final ResultsType TransportTrips
Assignment
public static final ResultsType Assignment
Metrics
public static final ResultsType Metrics
Validation
public static final ResultsType Validation
Tolls
public static final ResultsType Tolls
VariableToll
public static final ResultsType VariableToll
Signals
public static final ResultsType Signals
Traffic
public static final ResultsType Traffic
RampMetering
public static final ResultsType RampMetering
Transport
public static final ResultsType Transport
Economics
public static final ResultsType Economics
Parking
public static final ResultsType Parking
ROLO
public static final ResultsType ROLO
Plugins
public static final ResultsType Plugins
SCATS
public static final ResultsType SCATS
Frame
public static final ResultsType Frame
values
public static ResultsType[] 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 (ResultsType c : ResultsType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ResultsType 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 name
NullPointerException - if the argument is null