Enum RulesMode
- All Implemented Interfaces:
- Serializable,- Comparable<RulesMode>,- java.lang.constant.Constable
The rules mode determines how component metadata rules should be applied.
- Since:
- 6.8
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionIf this mode is set, any component metadata rule declared directly in a project, either directly or via a plugin, will trigger a build error.If this mode is set, any component metadata rule declared on a project will cause the project to use the rules declared by the project, ignoring those declared in settings.If this mode is set, any component metadata rule declared directly in a project, either directly or via a plugin, will be ignored.
- 
Method Summary
- 
Enum Constant Details- 
PREFER_PROJECTIf this mode is set, any component metadata rule declared on a project will cause the project to use the rules declared by the project, ignoring those declared in settings. This is the default behavior.
- 
PREFER_SETTINGSIf this mode is set, any component metadata rule declared directly in a project, either directly or via a plugin, will be ignored.
- 
FAIL_ON_PROJECT_RULESIf this mode is set, any component metadata rule declared directly in a project, either directly or via a plugin, will trigger a build error.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-