org.spincast.plugins.configpropsfile.IFreeKeyConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spincast-plugins-config-properties-file Show documentation
Show all versions of spincast-plugins-config-properties-file Show documentation
Spincast properties file configurations based plugin
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