
be.bagofwords.cache.fastutil.LongMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bow-utils Show documentation
Show all versions of bow-utils Show documentation
Utility classes that are used in the count-db project and other bow-* projects
The newest version!
package be.bagofwords.cache.fastutil;
import java.util.Collection;
import java.util.Set;
/**
* Created by Koen Deschacht ([email protected]) on 06/11/14.
*/
public interface LongMap {
int size();
boolean isEmpty();
boolean containsKey(long key);
boolean containsValue(T value);
T get(long key);
T put(long key, T value);
T remove(long key);
void clear();
Set keySet();
Collection values();
Set> entrySet();
interface Entry {
long getKey();
V getValue();
void setValue(V value);
boolean equals(Object o);
int hashCode();
}
boolean equals(Object o);
int hashCode();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy