Class TaskInputsPropertyNames_1_0

  • All Implemented Interfaces:
    com.gradle.scan.eventmodel.EventData

    @GradleVersion(since="4.0")
    @PluginVersion(since="2.1")
    public class TaskInputsPropertyNames_1_0
    extends Object
    implements com.gradle.scan.eventmodel.EventData
    The names of the input and output properties of a task.
    • Field Detail

      • valueInputs

        @Nullable("if the task has no value input properties")
        public final @Nullable("if the task has no value input properties") List<String> valueInputs
        The names of the value (i.e. non-file) input properties.

        The list is lexicographically ordered.

      • fileInputs

        @Nullable("if the task has no file input properties")
        public final @Nullable("if the task has no file input properties") List<String> fileInputs
        The names of the file input properties.

        The list is lexicographically ordered.

      • outputs

        public final List<String> outputs
        The names of the output properties.

        The list is lexicographically ordered.

    • Constructor Detail

      • TaskInputsPropertyNames_1_0

        public TaskInputsPropertyNames_1_0​(long id,
                                           @Nullable
                                           @Nullable List<String> valueInputs,
                                           @Nullable
                                           @Nullable List<String> fileInputs,
                                           List<String> outputs)