![JAR search and dependency download from the Maven repository](/logo.png)
org.jhotdraw8.icollection.impl.champmap.MutableHashCollisionNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jhotdraw8.icollection Show documentation
Show all versions of org.jhotdraw8.icollection Show documentation
JHotDraw8 Immutable Collections
The newest version!
/*
* @(#)MutableHashCollisionNode.java
* Copyright © 2022 The authors and contributors of JHotDraw. MIT License.
*/
package org.jhotdraw8.icollection.impl.champmap;
import org.jhotdraw8.icollection.impl.IdentityObject;
final class MutableHashCollisionNode extends HashCollisionNode {
private final IdentityObject mutator;
MutableHashCollisionNode(IdentityObject mutator, int hash, Object[] entries, int entryLength) {
super(hash, entries);
this.mutator = mutator;
}
@Override
protected IdentityObject getMutator() {
return mutator;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy