
com.twineworks.collections.champ.ChampEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of collections Show documentation
Show all versions of collections Show documentation
Special purpose collections for Java.
The newest version!
package com.twineworks.collections.champ;
final public class ChampEntry {
final public K key;
final public V value;
public ChampEntry(K key, V value) {
this.key = key;
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy