Package org.eclipse.aether.impl.scope
Enum Class InternalScopeManager.Mode
- All Implemented Interfaces:
Serializable
,Comparable<InternalScopeManager.Mode>
,Constable
- Enclosing interface:
InternalScopeManager
The mode of resolution scope: eliminate (remove all occurrences) or just remove.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic InternalScopeManager.Mode
Returns the enum constant of this class with the specified name.static InternalScopeManager.Mode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ELIMINATE
Mode where artifacts in non-wanted scopes are completely eliminated. In other words, this mode ensures that if a dependency was removed due unwanted scope, it is guaranteed that no such dependency will appear anywhere else in the resulting graph either. -
REMOVE
Mode where artifacts in non-wanted scopes are removed only. In other words, they will NOT prevent (as in they will not "dominate") other possibly appearing occurrences of same artifact in the graph.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-