Interface PropertiesSupplier<K,V>

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 PropertiesSupplier<K,V>
An interface to provide properties by providing key.
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the properties by the key.
  • Method Details

    • getProperties

      V getProperties(K key)
      Get the properties by the key.
      Parameters:
      key - the key.
      Returns:
      the properties instance.