|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GraphType>
com.sonyericsson.jenkins.plugins.bfa.graphs.GraphType
public enum GraphType
Enum for graph types.
Enum Constant Summary | |
---|---|
BAR_CHART_BUILD_NBRS
Constant for bar chart with build numbers. |
|
BAR_CHART_CATEGORIES
Constant for bar chart with categories. |
|
BAR_CHART_CAUSES
Constant for bar chart with FailureCause s. |
|
BAR_CHART_CAUSES_SMALL
Small bar chart. |
|
PIE_CHART_CATEGORIES
Constant for pie chart with categories. |
|
PIE_CHART_CAUSES
Constant for pie chart with FailureCause s. |
|
TIME_SERIES_CHART_CATEGORIES
Constant for time series chart with categories. |
|
TIME_SERIES_CHART_CAUSES
Constant for time series chart with FailureCause s. |
|
TIME_SERIES_UNKNOWN_FAILURES
Constant for time series chart displaying unknown failure causes. |
Method Summary | |
---|---|
int |
getValue()
Gets the integer representation of this enum. |
static GraphType |
toEnum(int value)
Maps an integer value to an enum. |
static GraphType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static GraphType[] |
values()
Returns an array containing the constants of this enum type, in the order they are 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 |
---|
public static final GraphType BAR_CHART_CAUSES_SMALL
public static final GraphType BAR_CHART_CAUSES
FailureCause
s.
public static final GraphType BAR_CHART_CATEGORIES
public static final GraphType BAR_CHART_BUILD_NBRS
public static final GraphType PIE_CHART_CAUSES
FailureCause
s.
public static final GraphType PIE_CHART_CATEGORIES
public static final GraphType TIME_SERIES_CHART_CAUSES
FailureCause
s.
public static final GraphType TIME_SERIES_CHART_CATEGORIES
public static final GraphType TIME_SERIES_UNKNOWN_FAILURES
Method Detail |
---|
public static GraphType[] values()
for (GraphType c : GraphType.values()) System.out.println(c);
public static GraphType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic int getValue()
public static GraphType toEnum(int value)
value
- to map
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |