public enum EFeatureToggle extends java.lang.Enum<EFeatureToggle>
Enum Constant and Description |
---|
BMW_COVERABLE_VOLUME_FILTER
Feature configuration for coverage computations (filter coverable volumes).
|
CODE_USAGE_WIDGET
Enables the code usage widget that shows execution counts per method.
|
DISABLE_ARCHITECTURE_OVERLAP_CHECK
Disable the architecture regex overlap check.
|
DISABLE_AUTOMATIC_WEBHOOK_CREATION
Disables the automatic creation of webhooks for repository connectors.
|
DISABLE_COMMIT_CHART_WIDGET
Disables the commit chart widget that shows the commits per user.
|
DISABLE_DEFAULT_ANALYSIS_PROFILES_CREATION
Disable creation of default analysis profiles
|
DISABLE_MEMORY_CHECK
Disable the check for sufficient memory.
|
DISABLE_SIMULINK_DEPENDENCY_EXTRACTION
Allows to disable simulink dependency extraction as a work-around for
TS-21836.
|
ENABLE_CLANG_TIDY
Enables the experimental Clang-Tidy integration.
|
ENABLE_CONQAT_INFILE_RATING
Enables support for reading legacy ConQAT in-file review ratings.
|
ENABLE_DEMO_LANDING_PAGE
Enables the landing page that is used for our own demo instance.
|
ENABLE_DEV_MODE
Enables the developer mode.
|
ENABLE_MERGE_REQUEST_VIEW
Enables the merge request view.
|
ENABLE_MONITORING_UPLOAD
Enables support for monitoring uploads to PDash.
|
ENABLE_RAEX
Enables the execution of Roslyn Analysers from within Teamscale using RAËX.
|
ENABLE_SONAR_LINT
Enables the experimental SonarLint integration.
|
INSTANCE_LABEL_OPTION_VISIBLE
Sets the normally hidden option for the instance label server option to
visible.
|
TEAMSCALE_IO_MODE
Enables the teamscale.io mode, which enables making repositories public, adds
a special role for provisioned users etc.
|
USE_COVERABLE_LINES_FROM_COVERAGE_REPORTS
Overwrite coverable lines calculated by Teamscale with information from
coverage reports.
|
USE_NEW_PREPROCESSOR
Enables the new preprocessor.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getId() |
boolean |
isEnabled()
Returns whether the given feature toggle is enabled or not.
|
void |
setFeatureToggle(boolean value)
Allows to enable/disable the feature toggle.
|
static EFeatureToggle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EFeatureToggle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EFeatureToggle CODE_USAGE_WIDGET
public static final EFeatureToggle BMW_COVERABLE_VOLUME_FILTER
public static final EFeatureToggle DISABLE_ARCHITECTURE_OVERLAP_CHECK
public static final EFeatureToggle ENABLE_DEMO_LANDING_PAGE
public static final EFeatureToggle DISABLE_MEMORY_CHECK
public static final EFeatureToggle DISABLE_COMMIT_CHART_WIDGET
public static final EFeatureToggle DISABLE_AUTOMATIC_WEBHOOK_CREATION
public static final EFeatureToggle USE_COVERABLE_LINES_FROM_COVERAGE_REPORTS
public static final EFeatureToggle ENABLE_CONQAT_INFILE_RATING
public static final EFeatureToggle ENABLE_MONITORING_UPLOAD
public static final EFeatureToggle ENABLE_RAEX
public static final EFeatureToggle ENABLE_MERGE_REQUEST_VIEW
public static final EFeatureToggle ENABLE_DEV_MODE
public static final EFeatureToggle ENABLE_CLANG_TIDY
public static final EFeatureToggle ENABLE_SONAR_LINT
public static final EFeatureToggle TEAMSCALE_IO_MODE
public static final EFeatureToggle DISABLE_SIMULINK_DEPENDENCY_EXTRACTION
public static final EFeatureToggle INSTANCE_LABEL_OPTION_VISIBLE
public static final EFeatureToggle USE_NEW_PREPROCESSOR
public static final EFeatureToggle DISABLE_DEFAULT_ANALYSIS_PROFILES_CREATION
public static EFeatureToggle[] values()
for (EFeatureToggle c : EFeatureToggle.values()) System.out.println(c);
public static EFeatureToggle valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic boolean isEnabled()
public void setFeatureToggle(boolean value)