@groovy.transform.CompileStatic enum TaskInputFileOptions
Configuration options for declaring files input properties. Some of these options might be ignored, depending on the version of Gradle.
| Enum constant | Description |
|---|---|
IGNORE_EMPTY_DIRECTORIES |
Ignore directories during up-to-date checks and build cache key calculations. |
NORMALIZE_LINE_ENDINGS |
Normalize line endings in text files during up-to-date checks and build cache key calculations |
OPTIONAL |
Whether the property is optional. |
SKIP_WHEN_EMPTY |
Skip executing the task if the property contains no files. |
| Modifiers | Name | Description |
|---|---|---|
static TaskInputFileOptions |
MAX_VALUE |
|
static TaskInputFileOptions |
MIN_VALUE |
| Type Params | Return Type | Name and description |
|---|---|---|
|
TaskInputFileOptions |
next() |
|
TaskInputFileOptions |
previous() |
|
static TaskInputFileOptions |
valueOf(String name) |
|
static final TaskInputFileOptions[] |
values() |
Ignore directories during up-to-date checks and build cache key calculations.
Normalize line endings in text files during up-to-date checks and build cache key calculations
Whether the property is optional.
Skip executing the task if the property contains no files.
Groovy Documentation