Package org.gradle.testkit.runner
Enum TaskOutcome
- All Implemented Interfaces:
Serializable
,Comparable<TaskOutcome>
,java.lang.constant.Constable
The outcome of executing a task during a build.
- Since:
- 2.6
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe task attempted to execute, but did not complete successfully.The task executed, but did not perform work as its output was found in a build cache.The task was skipped due to all input files declared with@SkipWhenEmpty
being empty.The task was not executed due to some reason.The task executed and performed its actions without failure.The task was not executed, as its output was up to date. -
Method Summary
Modifier and TypeMethodDescriptionstatic TaskOutcome
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 Details
-
SUCCESS
The task executed and performed its actions without failure. -
FAILED
The task attempted to execute, but did not complete successfully. -
UP_TO_DATE
The task was not executed, as its output was up to date. -
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
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
The task was skipped due to all input files declared with@SkipWhenEmpty
being empty.- Since:
- 3.4
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-