Enum ConflictResolver.Verbosity

java.lang.Object
java.lang.Enum<ConflictResolver.Verbosity>
org.eclipse.aether.util.graph.transformer.ConflictResolver.Verbosity
All Implemented Interfaces:
Serializable, Comparable<ConflictResolver.Verbosity>, java.lang.constant.Constable
Enclosing class:
ConflictResolver

The enum representing verbosity levels of conflict resolver.
Since:
1.9.8
  • Enum Constant Details

    • NONE

      public static final ConflictResolver.Verbosity NONE
      Verbosity level to be used in all "common" resolving use cases (ie. dependencies to build class path). The ConflictResolver in this mode will trim down the graph to the barest minimum: will not leave any conflicting node in place, hence no conflicts will be present in transformed graph either.
    • STANDARD

      public static final ConflictResolver.Verbosity STANDARD
      Verbosity level to be used in "analyze" resolving use cases (ie. dependency convergence calculations). The ConflictResolver in this mode will remove any redundant collected nodes, in turn it will leave one with recorded conflicting information. This mode corresponds to "classic verbose" mode when ConflictResolver.CONFIG_PROP_VERBOSE was set to true. Obviously, the resulting dependency tree is not suitable for artifact resolution unless a filter is employed to exclude the duplicate dependencies.
    • FULL

      public static final ConflictResolver.Verbosity FULL
      Verbosity level to be used in "analyze" resolving use cases (ie. dependency convergence calculations). The ConflictResolver in this mode will not remove any collected node, in turn it will record on all eliminated nodes the conflicting information. Obviously, the resulting dependency tree is not suitable for artifact resolution unless a filter is employed to exclude the duplicate dependencies.
  • Method Details

    • values

      Returns 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
    • valueOf

      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 name
      NullPointerException - if the argument is null