Interface JKValueLoader<K,V>

Type Parameters:
K - Specifies the generic type for the key associated.
V - Specifies the generic type for the value associated.

public interface JKValueLoader<K,V>
This interface provides the necessary methods for JKValueLoader objects.
Author:
Dr. Jalal H. Kiswani
  • Method Summary

    Modifier and Type
    Method
    Description
    This method loads the value associated with the key provided.
  • Method Details

    • loadValue

      V loadValue(K k)
      This method loads the value associated with the key provided.
      Parameters:
      k - Specifies the key associated with the value to be loaded.
      Returns:
      the value associated with the key.