Package org.gradle.testkit.runner
Enum TaskOutcome
- java.lang.Object
-
- java.lang.Enum<TaskOutcome>
-
- org.gradle.testkit.runner.TaskOutcome
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TaskOutcome>
public enum TaskOutcome extends java.lang.Enum<TaskOutcome>
The outcome of executing a task during a build.- Since:
- 2.6
- See Also:
BuildTask.getOutcome()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILED
The task attempted to execute, but did not complete successfully.FROM_CACHE
The task executed, but did not perform work as its output was found in a build cache.NO_SOURCE
The task was skipped due to all input files declared with@SkipWhenEmpty
being empty.SKIPPED
The task was not executed due to some reason.SUCCESS
The task executed and performed its actions without failure.UP_TO_DATE
The task was not executed, as its output was up to date.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TaskOutcome
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TaskOutcome[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final TaskOutcome SUCCESS
The task executed and performed its actions without failure.
-
FAILED
public static final TaskOutcome FAILED
The task attempted to execute, but did not complete successfully.
-
UP_TO_DATE
public static final TaskOutcome UP_TO_DATE
The task was not executed, as its output was up to date.
-
SKIPPED
public static final TaskOutcome SKIPPED
The task was not executed due to some reason. For Gradle version < 3.4, a task may be skipped if it had no work to do (e.g. no source to compile).
-
FROM_CACHE
public static final TaskOutcome FROM_CACHE
The task executed, but did not perform work as its output was found in a build cache.This outcome only occurs when the build under test has been configured for task output caching.
NOTE: If the Gradle version used for the build under test is older than 3.3, no tasks will have this outcome.
- Since:
- 3.3
-
NO_SOURCE
public static final TaskOutcome NO_SOURCE
The task was skipped due to all input files declared with@SkipWhenEmpty
being empty.- Since:
- 3.4
-
-
Method Detail
-
values
public static TaskOutcome[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TaskOutcome c : TaskOutcome.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskOutcome valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-