Package com.aowagie.text.pdf
Class IntHashtable.Entry
- java.lang.Object
-
- com.aowagie.text.pdf.IntHashtable.Entry
-
- Enclosing class:
- IntHashtable
static class IntHashtable.Entry extends java.lang.ObjectInnerclass that acts as a datastructure to create a new entry in the table.
-
-
Field Summary
Fields Modifier and Type Field Description private inthashprivate intkeyprivate IntHashtable.Entrynextprivate intvalue
-
Constructor Summary
Constructors Modifier Constructor Description privateEntry(int hash, int key, int value, IntHashtable.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.Objectclone()intgetKey()intgetValue()
-
-
-
Field Detail
-
hash
private final int hash
-
key
private final int key
-
value
private int value
-
next
private IntHashtable.Entry next
-
-
Constructor Detail
-
Entry
private Entry(int hash, int key, int value, IntHashtable.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
-
-