com.azalient.api.b.reporting
Enum IReportingOption.ReportingOptionName

java.lang.Object
  extended by java.lang.Enum<IReportingOption.ReportingOptionName>
      extended by com.azalient.api.b.reporting.IReportingOption.ReportingOptionName
All Implemented Interfaces:
Serializable, Comparable<IReportingOption.ReportingOptionName>
Enclosing interface:
IReportingOption

public static enum IReportingOption.ReportingOptionName
extends Enum<IReportingOption.ReportingOptionName>


Enum Constant Summary
ResultsCyclistDetail
          Save a detailed report on cyclist-trips, listing each individual trip
ResultsCyclistSummary
          Save a summary of cyclist-trips
ResultsPersonDetail
          Save a detailed report on person-trips, listing each individual trip
ResultsPersonSummary
          Save a summary of person-trips
ResultsSave
          Save results in the AZA file
ResultsSaveCSV
          Save results in an external comma-separated-value (CSV) text file
ResultsSaveXLS
          Save results in an external Microsoft Excel (XLS) file
ResultsTransportDetail
          Save a detailed report on transport-trips, listing each individual trip
ResultsTransportSummary
          Save a summary of transport-trips
ResultsVehicleDetail
          Save a detailed report on vehicle-trips, listing each individual trip
ResultsVehicleSummary
          Save a summary of vehicle-trips
 
Method Summary
static IReportingOption.ReportingOptionName valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IReportingOption.ReportingOptionName[] 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

ResultsSave

public static final IReportingOption.ReportingOptionName ResultsSave
Save results in the AZA file


ResultsSaveXLS

public static final IReportingOption.ReportingOptionName ResultsSaveXLS
Save results in an external Microsoft Excel (XLS) file


ResultsSaveCSV

public static final IReportingOption.ReportingOptionName ResultsSaveCSV
Save results in an external comma-separated-value (CSV) text file


ResultsPersonSummary

public static final IReportingOption.ReportingOptionName ResultsPersonSummary
Save a summary of person-trips


ResultsCyclistSummary

public static final IReportingOption.ReportingOptionName ResultsCyclistSummary
Save a summary of cyclist-trips


ResultsVehicleSummary

public static final IReportingOption.ReportingOptionName ResultsVehicleSummary
Save a summary of vehicle-trips


ResultsTransportSummary

public static final IReportingOption.ReportingOptionName ResultsTransportSummary
Save a summary of transport-trips


ResultsPersonDetail

public static final IReportingOption.ReportingOptionName ResultsPersonDetail
Save a detailed report on person-trips, listing each individual trip


ResultsCyclistDetail

public static final IReportingOption.ReportingOptionName ResultsCyclistDetail
Save a detailed report on cyclist-trips, listing each individual trip


ResultsVehicleDetail

public static final IReportingOption.ReportingOptionName ResultsVehicleDetail
Save a detailed report on vehicle-trips, listing each individual trip


ResultsTransportDetail

public static final IReportingOption.ReportingOptionName ResultsTransportDetail
Save a detailed report on transport-trips, listing each individual trip

Method Detail

values

public static IReportingOption.ReportingOptionName[] 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 (IReportingOption.ReportingOptionName c : IReportingOption.ReportingOptionName.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static IReportingOption.ReportingOptionName 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