Interface ConfigurationValue<T>

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 interface ConfigurationValue<T>
A value used by TextFactory for configuration. get(TextFactory, TextConfiguration) will be called every time the configuration value is requested. Implementations should be careful when using the provided TextConfiguration to avoid cyclic method calls.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(TextFactory factory, TextConfiguration configuration)
    When writing implementations, the developer should be careful when using the provided TextConfiguration to avoid cyclic method calls
  • Method Details

    • get

      T get(TextFactory factory, TextConfiguration configuration)
      When writing implementations, the developer should be careful when using the provided TextConfiguration to avoid cyclic method calls
      Parameters:
      factory - TextFactory for generating the configuration value
      configuration - TextConfiguration for generating the configuration value
      Returns:
      configured value, or null if the value cannot be generated