Enables lenient parsing. Useful for tests and spec parsing. @return this CacheBuilder instance (for chaining)
()
| 277 | */ |
| 278 | |
| 279 | @GwtIncompatible // To be supported |
| 280 | CacheBuilder<K, V> lenientParsing() { |
| 281 | strictParsing = false; |
| 282 | return this; |
| 283 | } |
| 284 | |
| 285 | /** |
| 286 | * Sets a custom {@code Equivalence} strategy for comparing keys. |