Package com.biglybt.core.util
Class ByteArrayHashMap.Entry<S>
- java.lang.Object
-
- com.biglybt.core.util.ByteArrayHashMap.Entry<S>
-
- Enclosing class:
- ByteArrayHashMap<T>
protected static class ByteArrayHashMap.Entry<S> extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Entry(int h, byte[] k, S v, ByteArrayHashMap.Entry<S> n)
Create new entry.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getKey()
S
getValue()
-
-
-
Field Detail
-
key
public final byte[] key
-
value
public S value
-
hash
public final int hash
-
next
public ByteArrayHashMap.Entry<S> next
-
-
Constructor Detail
-
Entry
Entry(int h, byte[] k, S v, ByteArrayHashMap.Entry<S> n)
Create new entry.
-
-
Method Detail
-
getKey
public byte[] getKey()
-
getValue
public S getValue()
-
-