public static enum ResolutionInstructions.Runorder extends Enum<ResolutionInstructions.Runorder>
| Enum Constant and Description |
|---|
LEASTDEPENDENCIESFIRST
Order the -runbundles by having the least dependent first.
|
LEASTDEPENDENCIESLAST
Order the -runbundles by having the least dependent last.
|
MERGESORTBYNAMEVERSION
Order the -runbundles sorted by name and merged with the existing
value if it exists.
|
RANDOM
Order the -runbundles randomly using the Collections#shuffle.
|
SORTBYNAMEVERSION
Order the -runbundles sorted by name.
|
| Modifier and Type | Method and Description |
|---|---|
static ResolutionInstructions.Runorder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResolutionInstructions.Runorder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResolutionInstructions.Runorder LEASTDEPENDENCIESFIRST
public static final ResolutionInstructions.Runorder LEASTDEPENDENCIESLAST
public static final ResolutionInstructions.Runorder RANDOM
public static final ResolutionInstructions.Runorder SORTBYNAMEVERSION
public static final ResolutionInstructions.Runorder MERGESORTBYNAMEVERSION
public static ResolutionInstructions.Runorder[] values()
for (ResolutionInstructions.Runorder c : ResolutionInstructions.Runorder.values()) System.out.println(c);
public static ResolutionInstructions.Runorder 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 nullCopyright © 2021. All rights reserved.