subkt / myaa.subkt.tasks / org.gradle.api.Task / getList
fun
Task
.getList(propertyName:
String
):
Provider
<
List
<
String
>>
(source)
Searches for the given property in the Subs object's SubProperties instance, and evaluates its value using evaluate.
This function is run in a task context, using the entry and release values for this task.
// from task mux.03
// property file: TV.03.value=hello{1..3}|test|$episode
getList("value")
// Output: [hello1, hello2, hello3, test, 03]
propertyName
- The property to find.