Uses of Interface
com.powsybl.commons.config.ModuleConfig
-
Packages that use ModuleConfig Package Description com.powsybl.commons.config -
-
Uses of ModuleConfig in com.powsybl.commons.config
Classes in com.powsybl.commons.config that implement ModuleConfig Modifier and Type Class Description class
AbstractMapModuleConfig
Provides implementation for most methods ofModuleConfig
, based on a single "mapping" method to be implemented {@link this#getValue(String)}.class
AbstractModuleConfig
Provides implementation for methods ofModuleConfig
.class
EnvironmentMapModuleConfig
AModuleConfig
designed to read property values from the map of environment variables.class
MapModuleConfig
AModuleConfig
backed by a simple key/valueMap
.class
StackedModuleConfig
Methods in com.powsybl.commons.config that return ModuleConfig Modifier and Type Method Description ModuleConfig
PlatformConfig. getModuleConfig(String name)
Deprecated.UsePlatformConfig.getOptionalModuleConfig(String)
insteadMethods in com.powsybl.commons.config that return types with arguments of type ModuleConfig Modifier and Type Method Description Optional<ModuleConfig>
EnvironmentModuleConfigRepository. getModuleConfig(String name)
Optional<ModuleConfig>
ModuleConfigRepository. getModuleConfig(String name)
Optional<ModuleConfig>
PropertiesModuleConfigRepository. getModuleConfig(String name)
Optional<ModuleConfig>
StackedModuleConfigRepository. getModuleConfig(String name)
Optional<ModuleConfig>
PlatformConfig. getOptionalModuleConfig(String name)
Methods in com.powsybl.commons.config with parameters of type ModuleConfig Modifier and Type Method Description static Optional<Boolean>
ModuleConfigUtil. getOptionalBooleanProperty(ModuleConfig moduleConfig, List<String> names)
static OptionalDouble
ModuleConfigUtil. getOptionalDoubleProperty(ModuleConfig moduleConfig, List<String> names)
static OptionalInt
ModuleConfigUtil. getOptionalIntProperty(ModuleConfig moduleConfig, List<String> names)
static Optional<List<String>>
ModuleConfigUtil. getOptionalStringListProperty(ModuleConfig moduleConfig, List<String> names)
static Optional<String>
ModuleConfigUtil. getOptionalStringProperty(ModuleConfig moduleConfig, List<String> names)
Constructors in com.powsybl.commons.config with parameters of type ModuleConfig Constructor Description Impl(ModuleConfig config)
StackedModuleConfig(ModuleConfig config1, ModuleConfig config2)
-