public enum GraphType extends Enum<GraphType>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullpublic int getValue()
public static GraphType toEnum(int value)
value
- to mapCopyright © 2016–2019. All rights reserved.