Enum Class 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>
,Constable
- Enclosing class:
ConflictResolver
The enum representing verbosity levels of conflict resolver.
- Since:
- 1.9.8
-
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 ConflictResolver.Verbosity
Returns the enum constant of this class with the specified name.static ConflictResolver.Verbosity[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
Verbosity level to be used in all "common" resolving use cases (ie. dependencies to build class path). TheConflictResolver
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
Verbosity level to be used in "analyze" resolving use cases (ie. dependency convergence calculations). TheConflictResolver
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 whenConflictResolver.CONFIG_PROP_VERBOSE
was set totrue
. Obviously, the resulting dependency tree is not suitable for artifact resolution unless a filter is employed to exclude the duplicate dependencies. -
FULL
Verbosity level to be used in "analyze" resolving use cases (ie. dependency convergence calculations). TheConflictResolver
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 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
-