Generated by
JDiff

Class com.itextpdf.io.util.IntHashtable

Documentation changed from old to new.

Changed Constructors
IntHashtable( int) Documentation changed from old to new.
Constructs a new, empty hashtable with the specified initial capacity and default load factor, which is 0.75.
IntHashtable( int, float ) Documentation changed from old to new.
Constructs a new, empty hashtable with the specified initial capacity and the specified load factor.
IntHashtable( void) Documentation changed from old to new.
Constructs a new, empty hashtable with a default capacity and load factor, which is 20 and 0.75 respectively.
 

Changed Methods
void  clear() Documentation changed from old to new.
Clears this hashtable so that it contains no keys.
boolean  contains( int) Documentation changed from old to new.
Tests if some key maps into the specified value in this hashtable.
boolean  containsKey( int) Documentation changed from old to new.
Tests if the specified int is a key in this hashtable.
boolean  containsValue( int) Documentation changed from old to new.
Returns true if this HashMap maps one or more keys to this value.
int  get( int) Documentation changed from old to new.
Returns the value to which the specified key is mapped in this map.
boolean  isEmpty() Documentation changed from old to new.
Tests if this hashtable maps no keys to values.
int  put( int, int ) Documentation changed from old to new.
Maps the specified key to the specified value in this hashtable.
void  rehash() Documentation changed from old to new.
Increases the capacity of and internally reorganizes this hashtable, in order to accommodate and access its entries more efficiently.
int  remove( int) Documentation changed from old to new.
Removes the key (and its corresponding value) from this hashtable.
int  size() Documentation changed from old to new.
Returns the number of keys in this hashtable.