Class StringMap.Entry
- java.lang.Object
-
- org.apache.batik.css.engine.value.StringMap.Entry
-
- Enclosing class:
- StringMap
protected static class StringMap.Entry extends java.lang.Object
To manage collisions
-
-
Field Summary
Fields Modifier and Type Field Description int
hash
The hash codejava.lang.String
key
The keyStringMap.Entry
next
The next entryjava.lang.Object
value
The value
-
Constructor Summary
Constructors Constructor Description Entry(int hash, java.lang.String key, java.lang.Object value, StringMap.Entry next)
Creates a new entry
-
-
-
Field Detail
-
hash
public int hash
The hash code
-
key
public java.lang.String key
The key
-
value
public java.lang.Object value
The value
-
next
public StringMap.Entry next
The next entry
-
-
Constructor Detail
-
Entry
public Entry(int hash, java.lang.String key, java.lang.Object value, StringMap.Entry next)
Creates a new entry
-
-