Interface MutableConfigProperties
-
- All Superinterfaces:
ConfigProperties
- All Known Implementing Classes:
MutableConfigPropertiesImpl
public interface MutableConfigProperties extends ConfigProperties
ExtendsConfigPropertieswith ability to modify.
-
-
Field Summary
-
Fields inherited from interface com.devonfw.module.basic.common.api.config.ConfigProperties
EMPTY, KEY_SEPARATOR
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetChildValue(String key, String value)voidsetValue(String value)-
Methods inherited from interface com.devonfw.module.basic.common.api.config.ConfigProperties
getChild, getChild, getChildKeys, getChildValue, getChildValue, getValue, getValue, getValue, getValueAsBoolean, inherit, isEmpty, toFlatMap, toFlatMap, toHierarchicalMap
-
-
-
-
Method Detail
-
setChildValue
void setChildValue(String key, String value)
- Parameters:
key- the key of thechildwhere toset the value. All such children will be created if they do not yet exist.value- the new value toset.
-
setValue
void setValue(String value)
- Parameters:
value- the new value ofConfigProperties.getValue().
-
-