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
-
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
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.
-