Package org.apache.commons.lang
Class IntHashMap.Entry
- java.lang.Object
-
- org.apache.commons.lang.IntHashMap.Entry
-
- Enclosing class:
- IntHashMap
private static class IntHashMap.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) inthash(package private) intkey(package private) IntHashMap.Entrynext(package private) java.lang.Objectvalue
-
Constructor Summary
Constructors Modifier Constructor Description protectedEntry(int hash, int key, java.lang.Object value, IntHashMap.Entry next)Create a new entry with the given values.
-
-
-
Field Detail
-
hash
final int hash
-
key
final int key
-
value
java.lang.Object value
-
next
IntHashMap.Entry next
-
-
Constructor Detail
-
Entry
protected Entry(int hash, int key, java.lang.Object value, IntHashMap.Entry next)Create a new entry with the given values.
- Parameters:
hash- The code used to hash the object withkey- The key used to enter this in the tablevalue- The value for this keynext- A reference to the next entry in the table
-
-