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:
  • Field Details

  • Constructor Details

    • JedisByteHashMap

      public JedisByteHashMap()
  • Method Details

    • clear

      public void clear()
      Specified by:
      clear in interface Map<byte[],byte[]>
    • containsKey

      public boolean containsKey(Object key)
      Specified by:
      containsKey in interface Map<byte[],byte[]>
    • containsValue

      public boolean containsValue(Object value)
      Specified by:
      containsValue in interface Map<byte[],byte[]>
    • entrySet

      public Set<Map.Entry<byte[],byte[]>> entrySet()
      Specified by:
      entrySet in interface Map<byte[],byte[]>
    • get

      public byte[] get(Object key)
      Specified by:
      get in interface Map<byte[],byte[]>
    • isEmpty

      public boolean isEmpty()
      Specified by:
      isEmpty in interface Map<byte[],byte[]>
    • keySet

      public Set<byte[]> keySet()
      Specified by:
      keySet in interface Map<byte[],byte[]>
    • put

      public byte[] put(byte[] key, byte[] value)
      Specified by:
      put in interface Map<byte[],byte[]>
    • putAll

      public void putAll(Map<? extends byte[],? extends byte[]> m)
      Specified by:
      putAll in interface Map<byte[],byte[]>
    • remove

      public byte[] remove(Object key)
      Specified by:
      remove in interface Map<byte[],byte[]>
    • size

      public int size()
      Specified by:
      size in interface Map<byte[],byte[]>
    • values

      public Collection<byte[]> values()
      Specified by:
      values in interface Map<byte[],byte[]>