(Strength strength)
| 598 | } |
| 599 | |
| 600 | CacheBuilder<K, V> setValueStrength(Strength strength) { |
| 601 | checkState(valueStrength == null, "Value strength was already set to %s", valueStrength); |
| 602 | valueStrength = checkNotNull(strength); |
| 603 | return this; |
| 604 | } |
| 605 | |
| 606 | Strength getValueStrength() { |
| 607 | return MoreObjects.firstNonNull(valueStrength, Strength.STRONG); |
no test coverage detected