Package redis.clients.jedis.util
Class JedisByteHashMap
- java.lang.Object
-
- redis.clients.jedis.util.JedisByteHashMap
-
- All Implemented Interfaces:
Serializable,Cloneable,Map<byte[],byte[]>
public class JedisByteHashMap extends Object implements Map<byte[],byte[]>, Cloneable, Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JedisByteHashMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<byte[],byte[]>>entrySet()byte[]get(Object key)booleanisEmpty()Set<byte[]>keySet()byte[]put(byte[] key, byte[] value)voidputAll(Map<? extends byte[],? extends byte[]> m)byte[]remove(Object key)intsize()Collection<byte[]>values()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap<byte[],byte[]>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap<byte[],byte[]>
-
putAll
public void putAll(Map<? extends byte[],? extends byte[]> m)
-
values
public Collection<byte[]> values()
-
-