com.azalient.apo.enums
Enum ResultsType

java.lang.Object
  extended by java.lang.Enum<ResultsType>
      extended by 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


Enum Constant Summary
Assignment
           
CyclistTrips
           
Economics
           
Frame
           
Metrics
           
Parking
           
PersonTrips
           
Plugins
           
RampMetering
           
ROLO
           
SCATS
           
Scenario
           
Signals
           
Tolls
           
Traffic
           
Transport
           
TransportTrips
           
Validation
           
VariableToll
           
VehicleTrips
           
 
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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