Enum Baseline
- All Implemented Interfaces:
Serializable
,Comparable<Baseline>
The baseline for the code coverage computation.
-
Enum Constant Summary
Enum ConstantDescriptionCoverage of the modified lines (e.g., within the modified lines of a pull or merge request) will focus on new or modified code only.Coverage of the whole project. -
Method Summary
Modifier and TypeMethodDescriptiongetDisplayColors
(double value, ColorProvider colorProvider) Returns the display colors to use render a value of this baseline.getTitle()
getUrl()
static Baseline
Returns the enum constant of this type with the specified name.static Baseline[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PROJECT
Coverage of the whole project. This is an absolute value that might not change much from build to build. -
MODIFIED_LINES
Coverage of the modified lines (e.g., within the modified lines of a pull or merge request) will focus on new or modified code only.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-
getTitle
-
getUrl
-
getDisplayColors
Returns the display colors to use render a value of this baseline.- Parameters:
value
- the value to rendercolorProvider
- the color provider to use- Returns:
- the display colors to use
-