Enum ConfigParameters
- java.lang.Object
-
- java.lang.Enum<ConfigParameters>
-
- com.hello2morrow.sonargraph.integration.jenkins.controller.ConfigParameters
-
- All Implemented Interfaces:
Serializable
,Comparable<ConfigParameters>
public enum ConfigParameters extends Enum<ConfigParameters>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static ConfigParameters
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConfigParameters[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTION_URL_REPORT
public static final ConfigParameters ACTION_URL_REPORT
-
ACTION_URL_DIFF
public static final ConfigParameters ACTION_URL_DIFF
-
ACTION_URL_INTEGRATION
public static final ConfigParameters ACTION_URL_INTEGRATION
-
ACTION_URL_PIPELINE_REPORT
public static final ConfigParameters ACTION_URL_PIPELINE_REPORT
-
ACTION_URL_PIPELINE_DIFF
public static final ConfigParameters ACTION_URL_PIPELINE_DIFF
-
ACTION_URL_PIPELINE_CHART
public static final ConfigParameters ACTION_URL_PIPELINE_CHART
-
ACTION_DISPLAY_INTEGRATION
public static final ConfigParameters ACTION_DISPLAY_INTEGRATION
-
ACTION_DISPLAY_REPORT
public static final ConfigParameters ACTION_DISPLAY_REPORT
-
ACTION_DISPLAY_DIFF
public static final ConfigParameters ACTION_DISPLAY_DIFF
-
ACTION_DISPLAY_CHART
public static final ConfigParameters ACTION_DISPLAY_CHART
-
REPORT_BUILDER_DISPLAY_NAME
public static final ConfigParameters REPORT_BUILDER_DISPLAY_NAME
-
SONARGRAPH_ICON
public static final ConfigParameters SONARGRAPH_ICON
-
JOB_FOLDER
public static final ConfigParameters JOB_FOLDER
-
METRIC_HISTORY_CSV_FILE_PATH
public static final ConfigParameters METRIC_HISTORY_CSV_FILE_PATH
-
METRICIDS_HISTORY_JSON_FILE_PATH
public static final ConfigParameters METRICIDS_HISTORY_JSON_FILE_PATH
-
CHARTS_FOR_METRICS_CSV_FILE_PATH
public static final ConfigParameters CHARTS_FOR_METRICS_CSV_FILE_PATH
-
REPORT_HISTORY_FOLDER
public static final ConfigParameters REPORT_HISTORY_FOLDER
-
SONARGRAPH_REPORT_TARGET_DIRECTORY
public static final ConfigParameters SONARGRAPH_REPORT_TARGET_DIRECTORY
-
SONARGRAPH_REPORT_FILE_NAME
public static final ConfigParameters SONARGRAPH_REPORT_FILE_NAME
-
SONARGRAPH_DIFF_FILE_NAME
public static final ConfigParameters SONARGRAPH_DIFF_FILE_NAME
-
-
Method Detail
-
values
public static ConfigParameters[] 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 (ConfigParameters c : ConfigParameters.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigParameters valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
-
-