Interface PropertyProvider

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 PropertyProvider
Strategy for providing named properties — for example, for looking up key-value pairs in a generic fashion.

Primarily intended for use within the framework.

Since:
5.3
Author:
Sam Brannen
  • Method Summary

    Modifier and Type
    Method
    Description
    get(String name)
    Get the value of the named property.
  • Method Details

    • get

      @Nullable String get(String name)
      Get the value of the named property.
      Parameters:
      name - the name of the property to retrieve
      Returns:
      the value of the property or null if not found