Package gw.util
Class CiHashMap.Entry<K extends java.lang.CharSequence,V>
- java.lang.Object
-
- gw.util.CiHashMap.Entry<K,V>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)intgetHash()KgetKey()CiHashMap.Entry<K,V>getNext()VgetValue()inthashCode()voidsetKey(K key)voidsetNext(CiHashMap.Entry<K,V> next)VsetValue(V value)
-
-
-
Field Detail
-
_key
private K extends java.lang.CharSequence _key
-
_value
private V _value
-
_hash
private int _hash
-
_next
private CiHashMap.Entry<K extends java.lang.CharSequence,V> _next
-
-
Constructor Detail
-
Entry
public Entry(K key, V value, int hash, CiHashMap.Entry<K,V> next)
-
-
Method Detail
-
getKey
public K getKey()
-
setKey
public void setKey(K key)
-
getValue
public V getValue()
-
getHash
public int getHash()
-
getNext
public CiHashMap.Entry<K,V> getNext()
-
setNext
public void setNext(CiHashMap.Entry<K,V> next)
-
equals
public boolean equals(java.lang.Object o)
-
-