io.polyglotted.applauncher.settings.SettingsHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of app-launcher Show documentation
Show all versions of app-launcher Show documentation
Launch an in-process application
package io.polyglotted.applauncher.settings;
import com.typesafe.config.Config;
import java.util.Properties;
public interface SettingsHolder {
Config config();
T proxy(Class configurationInterface);
Properties asProperties(String prefix, boolean includePrefix);
boolean hasValue(String name);
String stringValue(String name);
int intValue(String name);
boolean booleanValue(String name);
long longValue(String name);
double doubleValue(String name);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy