com.tngtech.propertyloader.impl.interfaces.PropertySuffixContainer 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.util.List;
public interface PropertySuffixContainer {
T addUserName();
T addLocalHostNames();
T addString(String suffix);
T addSuffixList(List suffixes);
T addDefaultSuffixes();
}