|
|
fun boolean(options: Property<Boolean>.() -> Unit = {}): Property<Boolean!>! |
|
|
fun buildDir(path: String): DirectoryProperty! |
|
|
fun buildFile(path: String): RegularFileProperty! |
|
|
fun dir(options: DirectoryProperty.() -> Unit = {}): DirectoryProperty! |
|
|
fun file(options: RegularFileProperty.() -> Unit = {}): RegularFileProperty! |
|
|
fun files(options: ConfigurableFileCollection.() -> Unit = {}): ConfigurableFileCollection! |
|
|
fun int(options: Property<Int>.() -> Unit = {}): Property<Int!>! |
|
|
fun <T> list(options: ListProperty<T>.() -> Unit = {}): ListProperty<T>! |
|
|
fun long(options: Property<Long>.() -> Unit = {}): Property<Long!>! |
|
|
fun <K, V> map(options: MapProperty<K, V>.() -> Unit = {}): MapProperty<K, V>! |
|
|
fun projectDir(path: String): DirectoryProperty! |
|
|
fun projectFile(path: String): RegularFileProperty! |
|
|
fun <T> provider(value: () -> T): Provider<T>! |
|
|
fun relativeDir(dir: DirectoryProperty, path: String): DirectoryProperty! |
|
|
fun relativeFile(dir: DirectoryProperty, path: String): RegularFileProperty! |
|
|
fun string(options: Property<String>.() -> Unit = {}): Property<String!>! |
|
|
fun strings(options: ListProperty<String>.() -> Unit = {}): ListProperty<String!>! |
|
|
fun <T> typed(options: Property<T>.() -> Unit = {}): Property<T>! |