Module bus.setting

Interface Loader.ValueEditor

Enclosing class:
Loader
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface Loader.ValueEditor
A functional interface for editing a property value during the loading process. This can be used for tasks like decrypting encrypted values.
  • Method Summary

    Modifier and Type
    Method
    Description
    edit(String group, String key, String value)
    Edits the given value.
  • Method Details

    • edit

      String edit(String group, String key, String value)
      Edits the given value.
      Parameters:
      group - The group the property belongs to.
      key - The property key.
      value - The original property value.
      Returns:
      The edited value.