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 Type
    Method
    Description
    set(ConfigOption<T> option, T value)
    Stores a given value using the metadata included in the ConfigOption.
  • Method Details

    • set

      <T> WritableConfig set(ConfigOption<T> option, T value)
      Stores a given value using the metadata included in the ConfigOption. The value should be readable back through ReadableConfig.
      Type Parameters:
      T - type of the value to be stored
      Parameters:
      option - metadata information
      value - value to be stored
      Returns:
      instance of this configuration for fluent API