Home | History | Annotate | Download | only in collect

Lines Matching full:newvalue

870       boolean replace(K key, int hash, V oldValue, V newValue) {
886 s.setValue(e, newValue);
898 V replace(K key, int hash, V newValue) {
913 s.setValue(e, newValue);
1507 public boolean replace(K key, V oldValue, V newValue) {
1514 if (newValue == null) {
1515 throw new NullPointerException("newValue");
1518 return segmentFor(hash).replace(key, hash, oldValue, newValue);