Uses of Class
org.jcodings.util.Hash.HashEntry
-
Packages that use Hash.HashEntry Package Description org.jcodings.util -
-
Uses of Hash.HashEntry in org.jcodings.util
Subclasses of Hash.HashEntry in org.jcodings.util Modifier and Type Class Description static class
BytesHash.BytesHashEntry<V>
static class
CaseInsensitiveBytesHash.CaseInsensitiveBytesHashEntry<V>
static class
IntArrayHash.IntArrayHashEntry<V>
static class
IntHash.IntHashEntry<V>
static class
ObjHash.ObjHashEntry<K,V>
Fields in org.jcodings.util declared as Hash.HashEntry Modifier and Type Field Description protected Hash.HashEntry<V>
Hash.HashEntry. after
protected Hash.HashEntry<V>
Hash.HashEntry. before
protected Hash.HashEntry<V>
Hash. head
protected Hash.HashEntry<V>
Hash.HashEntry. next
(package private) Hash.HashEntry<V>
Hash.HashEntryIterator. next
(package private) Hash.HashEntry<V>
Hash.HashIterator. next
protected Hash.HashEntry<V>[]
Hash. table
Methods in org.jcodings.util that return Hash.HashEntry Modifier and Type Method Description Hash.HashEntry<V>
Hash.HashEntryIterator. next()
Methods in org.jcodings.util that return types with arguments of type Hash.HashEntry Modifier and Type Method Description java.util.Iterator<Hash.HashEntry<V>>
Hash.HashEntryIterator. iterator()
Constructors in org.jcodings.util with parameters of type Hash.HashEntry Constructor Description BytesHashEntry(int hash, Hash.HashEntry<V> next, V value, byte[] bytes, int p, int end, Hash.HashEntry<V> head)
CaseInsensitiveBytesHashEntry(int hash, Hash.HashEntry<V> next, V value, byte[] bytes, int p, int end, Hash.HashEntry<V> head)
HashEntry(int hash, Hash.HashEntry<V> next, V value, Hash.HashEntry<V> head)
IntArrayHashEntry(int hash, Hash.HashEntry<V> next, V value, int[] key, Hash.HashEntry<V> head)
IntHashEntry(int hash, Hash.HashEntry<V> next, V value, Hash.HashEntry<V> head)
ObjHashEntry(int hash, Hash.HashEntry<V> next, V value, K key, Hash.HashEntry<V> head)
-