Package org.openpdf.text.pdf
Class IntHashtable.Entry
java.lang.Object
org.openpdf.text.pdf.IntHashtable.Entry
- Enclosing class:
- IntHashtable
Innerclass that acts as a datastructure to create a new entry in the table.
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) int(package private) int(package private) IntHashtable.Entry(package private) int -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedEntry(int hash, int key, int value, IntHashtable.Entry next) Create a new entry with the given values. -
Method Summary
-
Field Details
-
hash
int hash -
key
int key -
value
int value -
next
IntHashtable.Entry next
-
-
Constructor Details
-
Entry
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
-
-
Method Details