Package com.itextpdf.text.pdf
Class LongHashtable.Entry
- java.lang.Object
-
- com.itextpdf.text.pdf.LongHashtable.Entry
-
- Enclosing class:
- LongHashtable
static class LongHashtable.Entry extends java.lang.Object
Innerclass that acts as a datastructure to create a new entry in the table.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) int
hash
(package private) long
key
(package private) LongHashtable.Entry
next
(package private) long
value
-
Constructor Summary
Constructors Modifier Constructor Description protected
Entry(int hash, long key, long value, LongHashtable.Entry next)
Create a new entry with the given values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Object
clone()
long
getKey()
long
getValue()
-
-
-
Field Detail
-
hash
int hash
-
key
long key
-
value
long value
-
next
LongHashtable.Entry next
-
-
Constructor Detail
-
Entry
protected Entry(int hash, long key, long value, LongHashtable.Entry next)
Create a new entry with the given values.
- Parameters:
hash
- The code used to hash the int withkey
- The key used to enter this in the tablevalue
- The value for this keynext
- A reference to the next entry in the table
-
-