Enum ReportResource.ReportType
- java.lang.Object
-
- java.lang.Enum<ReportResource.ReportType>
-
- com.xebialabs.xlrelease.reports.api.internal.ReportResource.ReportType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ReportResource.ReportType>
- Enclosing class:
- ReportResource
public static enum ReportResource.ReportType extends java.lang.Enum<ReportResource.ReportType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NUMBER_OF_RELEASE_BY_MONTHRELEASE_AUTOMATIONRELEASE_DURATIONTOP_LONGEST_PHASETOP_LONGEST_RELEASETOP_LONGEST_TASKTOP_PEOPLE_MOST_INVOLVED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReportResource.ReportTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ReportResource.ReportType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RELEASE_DURATION
public static final ReportResource.ReportType RELEASE_DURATION
-
RELEASE_AUTOMATION
public static final ReportResource.ReportType RELEASE_AUTOMATION
-
TOP_PEOPLE_MOST_INVOLVED
public static final ReportResource.ReportType TOP_PEOPLE_MOST_INVOLVED
-
TOP_LONGEST_TASK
public static final ReportResource.ReportType TOP_LONGEST_TASK
-
TOP_LONGEST_PHASE
public static final ReportResource.ReportType TOP_LONGEST_PHASE
-
TOP_LONGEST_RELEASE
public static final ReportResource.ReportType TOP_LONGEST_RELEASE
-
NUMBER_OF_RELEASE_BY_MONTH
public static final ReportResource.ReportType NUMBER_OF_RELEASE_BY_MONTH
-
-
Method Detail
-
values
public static ReportResource.ReportType[] 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 (ReportResource.ReportType c : ReportResource.ReportType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReportResource.ReportType 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 namejava.lang.NullPointerException- if the argument is null
-
-