java.io.Serializable
, java.lang.Comparable<ResolutionStrategy.SortOrder>
public static enum ResolutionStrategy.SortOrder extends java.lang.Enum<ResolutionStrategy.SortOrder>
ResolutionStrategy.sortArtifacts(SortOrder)
Enum Constant | Description |
---|---|
CONSUMER_FIRST |
|
DEFAULT |
|
DEPENDENCY_FIRST |
Modifier and Type | Method | Description |
---|---|---|
static ResolutionStrategy.SortOrder |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ResolutionStrategy.SortOrder[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResolutionStrategy.SortOrder DEFAULT
public static final ResolutionStrategy.SortOrder CONSUMER_FIRST
public static final ResolutionStrategy.SortOrder DEPENDENCY_FIRST
public static ResolutionStrategy.SortOrder[] values()
for (ResolutionStrategy.SortOrder c : ResolutionStrategy.SortOrder.values()) System.out.println(c);
public static ResolutionStrategy.SortOrder valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null