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

org.spincast.plugins.configpropsfile.IFreeKeyConfig Maven / Gradle / Ivy

The newest version!
package org.spincast.plugins.configpropsfile;

/**
 * Interface allowing to retrieve configurations using
 * an untyped,plain text key.
 */
public interface IFreeKeyConfig {

    public String getConfig(String key);

    public String getConfig(String key, String defaultValue);

    public Boolean getConfigBoolean(String key);

    public Boolean getConfigBoolean(String key, Boolean defaultValue);

    public Integer getConfigInteger(String key);

    public Integer getConfigInteger(String key, Integer defaultValue);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy