Package ai.dat.core.configuration
Interface WritableConfig
- All Known Implementing Classes:
Configuration
public interface WritableConfig
Write access to a configuration object.
Allows storing values described with meta information included in
ConfigOption.-
Method Summary
Modifier and TypeMethodDescription<T> WritableConfigset(ConfigOption<T> option, T value) Stores a given value using the metadata included in theConfigOption.
-
Method Details
-
set
Stores a given value using the metadata included in theConfigOption. The value should be readable back throughReadableConfig.- Type Parameters:
T- type of the value to be stored- Parameters:
option- metadata informationvalue- value to be stored- Returns:
- instance of this configuration for fluent API
-