public static enum RunResult.ResolutionStatus extends Enum<RunResult.ResolutionStatus>
| Enum Constant and Description |
|---|
copied
-
|
dropped
-
|
exported
-
|
ignored
-
|
mapped
-
|
missing
-
|
notSelected
-
|
overwritten
-
|
unknown
-
|
| Modifier and Type | Method and Description |
|---|---|
static RunResult.ResolutionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunResult.ResolutionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunResult.ResolutionStatus copied
public static final RunResult.ResolutionStatus dropped
public static final RunResult.ResolutionStatus mapped
public static final RunResult.ResolutionStatus missing
public static final RunResult.ResolutionStatus notSelected
public static final RunResult.ResolutionStatus overwritten
public static final RunResult.ResolutionStatus exported
public static final RunResult.ResolutionStatus unknown
public static final RunResult.ResolutionStatus ignored
public static RunResult.ResolutionStatus[] values()
for (RunResult.ResolutionStatus c : RunResult.ResolutionStatus.values()) System.out.println(c);
public static RunResult.ResolutionStatus 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