Package com.itextpdf.io.util
Class IntHashtable.Entry
- java.lang.Object
-
- com.itextpdf.io.util.IntHashtable.Entry
-
- Enclosing class:
- IntHashtable
public 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 (package private) intkey(package private) IntHashtable.Entrynext(package private) intvalue
-
Constructor Summary
Constructors Constructor Description Entry(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()java.lang.StringtoString()
-
-
-
Field Detail
-
key
int key
-
value
int value
-
next
IntHashtable.Entry next
-
-
Constructor Detail
-
Entry
Entry(int key, int value, IntHashtable.Entry next)Create a new entry with the given values.- Parameters:
key- The key used to enter this in the tablevalue- The value for this keynext- A reference to the next entry in the table
-
-