The keys are stored as they are given [BUG #DBUTILS-34], so we maintain an internal mapping from lowercase keys to the real keys in order to achieve the case insensitive lookup.
Note: This implementation does not allow null for key, whereas {@link HashMap} does, because of the code:
key.toString().toLowerCase()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|