Enum Class InternalScopeManager.Mode

java.lang.Object
java.lang.Enum<InternalScopeManager.Mode>
org.eclipse.aether.impl.scope.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.
  • Enum Constant Details

    • ELIMINATE

      public static final InternalScopeManager.Mode 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

      public static final InternalScopeManager.Mode 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

      public static InternalScopeManager.Mode[] 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 name
      NullPointerException - if the argument is null