All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tngtech.propertyloader.impl.interfaces.PropertyLocationsContainer Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy