Enum TaskOutcome

    • 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​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null