com.pmease.quickbuild.plugin.report.engine.datareport
Enum ReportGroup

java.lang.Object
  extended by java.lang.Enum<ReportGroup>
      extended by com.pmease.quickbuild.plugin.report.engine.datareport.ReportGroup
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ReportGroup>

public enum ReportGroup
extends java.lang.Enum<ReportGroup>

Defines the catalog for a specific data report. 'BUILD' catalog means the report is stored in system build directory. 'STATISTICS' catalog means the report is stored in statistics directory which resides in system configuration directory.


Enum Constant Summary
AGGREGATION
           
BUILD
           
HISTORY
           
PERSISTENCE
           
STATISTICS
           
TEMP
           
 
Method Summary
static ReportGroup valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ReportGroup[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BUILD

public static final ReportGroup BUILD

STATISTICS

public static final ReportGroup STATISTICS

HISTORY

public static final ReportGroup HISTORY

PERSISTENCE

public static final ReportGroup PERSISTENCE

AGGREGATION

public static final ReportGroup AGGREGATION

TEMP

public static final ReportGroup TEMP
Method Detail

values

public static ReportGroup[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ReportGroup c : ReportGroup.values())
        System.out.println(c);

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

valueOf

public static ReportGroup valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name


Copyright © 2005-2010 PMEase Inc. All Rights Reserved.