edu.mayo.bsi.ngsportal.client
Enum SGEBarGraph.SGEGraphType

java.lang.Object
  extended by java.lang.Enum<SGEBarGraph.SGEGraphType>
      extended by edu.mayo.bsi.ngsportal.client.SGEBarGraph.SGEGraphType
All Implemented Interfaces:
Serializable, Comparable<SGEBarGraph.SGEGraphType>
Enclosing class:
SGEBarGraph

public static enum SGEBarGraph.SGEGraphType
extends Enum<SGEBarGraph.SGEGraphType>

List of types of graphs for the bar graph to display.

Author:
M102772

Enum Constant Summary
AVERAGE
          Average CPU Seconds
AVGRUN
          Average Metrics Over Runs
COUNT
          Execution Counts
ERRORSPERRUN
          Errors Per Run
FLOWCELLSPERMONTH
          Flow-cells Per Month
RUNWALLCLOCK
          Wall Clock Time by RunID
SAMPLESPERMONTH
          Samples Processed Per Month
SAMPLEWALLCLOCK
          Wall Clock Time by SampleID
TOTAL
          Total CPU Seconds
 
Method Summary
static SGEBarGraph.SGEGraphType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SGEBarGraph.SGEGraphType[] 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

TOTAL

public static final SGEBarGraph.SGEGraphType TOTAL
Total CPU Seconds


AVERAGE

public static final SGEBarGraph.SGEGraphType AVERAGE
Average CPU Seconds


COUNT

public static final SGEBarGraph.SGEGraphType COUNT
Execution Counts


AVGRUN

public static final SGEBarGraph.SGEGraphType AVGRUN
Average Metrics Over Runs


RUNWALLCLOCK

public static final SGEBarGraph.SGEGraphType RUNWALLCLOCK
Wall Clock Time by RunID


SAMPLEWALLCLOCK

public static final SGEBarGraph.SGEGraphType SAMPLEWALLCLOCK
Wall Clock Time by SampleID


SAMPLESPERMONTH

public static final SGEBarGraph.SGEGraphType SAMPLESPERMONTH
Samples Processed Per Month


ERRORSPERRUN

public static final SGEBarGraph.SGEGraphType ERRORSPERRUN
Errors Per Run


FLOWCELLSPERMONTH

public static final SGEBarGraph.SGEGraphType FLOWCELLSPERMONTH
Flow-cells Per Month

Method Detail

values

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

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

valueOf

public static SGEBarGraph.SGEGraphType 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