Class JedisByteHashMap.JedisByteEntry

java.lang.Object
redis.clients.jedis.util.JedisByteHashMap.JedisByteEntry
All Implemented Interfaces:
Map.Entry<byte[],byte[]>
Enclosing class:
JedisByteHashMap

private static final class JedisByteHashMap.JedisByteEntry extends Object implements Map.Entry<byte[],byte[]>
  • Field Details

    • value

      private byte[] value
    • key

      private byte[] key
  • Constructor Details

    • JedisByteEntry

      public JedisByteEntry(byte[] key, byte[] value)
  • Method Details

    • getKey

      public byte[] getKey()
      Specified by:
      getKey in interface Map.Entry<byte[],byte[]>
    • getValue

      public byte[] getValue()
      Specified by:
      getValue in interface Map.Entry<byte[],byte[]>
    • setValue

      public byte[] setValue(byte[] value)
      Specified by:
      setValue in interface Map.Entry<byte[],byte[]>