com.tngtech.propertyloader.impl.interfaces.PropertyLocationsContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of property-loader Show documentation
Show all versions of property-loader Show documentation
The property loader is a java library for managing property configurations.
package com.tngtech.propertyloader.impl.interfaces;
import java.net.URL;
public interface PropertyLocationsContainer {
T atDefaultLocations();
T atCurrentDirectory();
T atHomeDirectory();
T atDirectory(String directory);
T atContextClassPath();
T atRelativeToClass(Class> reference);
T atClassLoader(ClassLoader classLoader);
T atBaseURL(URL url);
}