com.lowagie.text.pdf

Class IntHashtable.Entry

static class IntHashtable.Entry extends Object

Innerclass that acts as a datastructure to create a new entry in the table.

Field Summary
inthash
intkey
IntHashtable.Entrynext
intvalue
Constructor Summary
protected Entry(int hash, int key, int value, IntHashtable.Entry next)

Create a new entry with the given values.

Method Summary
protected Objectclone()
intgetKey()
intgetValue()

Field Detail

hash

int hash

key

int key

IntHashtable.Entry next

value

int value

Constructor Detail

Entry

protected 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 with key The key used to enter this in the table value The value for this key next A reference to the next entry in the table

Method Detail

clone

protected Object clone()

getKey

public int getKey()

getValue

public int getValue()