| Class | Description |
|---|---|
| Collectors |
Provides different implementations of
Collector |
| SmallMap<K,V> |
A
Map implementation optimized for cases in which:
The size will not surpass the number of five entries, or will only surpass it in the minority of cases
The key's equals(Object) method is significantly faster than its hashCode() method
The way this map works is that instead of using a hash table, it will do a brute force search over its five keys. |
Copyright © 2025 MuleSoft, Inc.. All rights reserved.