org.gradle.api.file.DirectoryProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.api.file;
import org.gradle.api.Incubating;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.Provider;
/**
* Represents some configurable directory location, whose value is mutable.
*
*
* You can create a {@link DirectoryProperty} using {@link ObjectFactory#directoryProperty()}.
*
*
* Note: This interface is not intended for implementation by build script or plugin authors.
*
* @since 4.3
*/
@Incubating
public interface DirectoryProperty extends FileSystemLocationProperty {
/**
* Returns a {@link FileTree} that allows the files and directories contained in this directory to be queried.
*/
FileTree getAsFileTree();
/**
* {@inheritDoc}
*/
@Override
DirectoryProperty value(Directory value);
/**
* {@inheritDoc}
*/
@Override
DirectoryProperty value(Provider extends Directory> provider);
/**
* {@inheritDoc}
*/
@Override
DirectoryProperty convention(Directory value);
/**
* {@inheritDoc}
*/
@Override
DirectoryProperty convention(Provider extends Directory> valueProvider);
/**
* Returns a {@link Directory} whose value is the given path resolved relative to the value of this directory.
*
* @param path The path. Can be absolute.
* @return The directory.
*/
Provider dir(String path);
/**
* Returns a {@link Directory} whose value is the given path resolved relative to the value of this directory.
*
* @param path The path. Can have a value that is an absolute path.
* @return The directory.
*/
Provider dir(Provider extends CharSequence> path);
/**
* Returns a {@link RegularFile} whose value is the given path resolved relative to the value of this directory.
*
* @param path The path. Can be absolute.
* @return The file.
*/
Provider file(String path);
/**
* Returns a {@link RegularFile} whose value is the given path resolved relative to the value of this directory.
*
* @param path The path. Can have a value that is an absolute path.
* @return The file.
*/
Provider file(Provider extends CharSequence> path);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy