Enum ConflictResolver.Verbosity

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      FULL
      Verbosity level to be used in "analyze" resolving use cases (ie.
      NONE
      Verbosity level to be used in all "common" resolving use cases (ie.
      STANDARD
      Verbosity level to be used in "analyze" resolving use cases (ie.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static ConflictResolver.Verbosity valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ConflictResolver.Verbosity[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • 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 Detail

      • values

        public static ConflictResolver.Verbosity[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ConflictResolver.Verbosity c : ConflictResolver.Verbosity.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ConflictResolver.Verbosity valueOf​(java.lang.String name)
        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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null