Interface CaseInsensitiveMap.Entry<T>

Enclosing class:
CaseInsensitiveMap<T>

public static interface CaseInsensitiveMap.Entry<T>
Interface describing the methods available for an entry of the CaseInsensitiveMap.
Since:
9.0
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the key of the entry.
    This method returns the value of the entry.
    setValue(T value)
    This method set the value of the entry.
  • Method Details

    • getKey

      String getKey()
      This method returns the key of the entry.
      Returns:
      The key of the entry, never null.
    • getValue

      T getValue()
      This method returns the value of the entry.
      Returns:
      The value of the entry, may be null.
    • setValue

      T setValue(T value)
      This method set the value of the entry.
      Parameters:
      value - The value to set, may be null.
      Returns:
      The previous value of this entry, may be null.