Serializable, Comparable<ResolutionStrategy.SortOrder>public static enum ResolutionStrategy.SortOrder extends Enum<ResolutionStrategy.SortOrder>
ResolutionStrategy.sortArtifacts(SortOrder)| Enum Constant | Description | 
|---|---|
| CONSUMER_FIRST | |
| DEFAULT | |
| DEPENDENCY_FIRST | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static ResolutionStrategy.SortOrder | valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null