Java org.springframework.data.redis.core BoundHashOperations fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.data.redis.core BoundHashOperations fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.data.redis.core BoundHashOperations.

The text is from its open source code.

Implementation

org.springframework.data.redis.core.BoundHashOperations has the following implementations.
Click this link to see all its implementation.

Method

Mapentries()
Get entire hash at the bound key.
HVget(Object member)
Get value for given key from the hash at the bound key.
BooleanhasKey(Object key)
Determine if given hash key exists at the bound key.
Longincrement(HK key, long delta)
Increment value of a hash key by the given delta at the bound key.
Doubleincrement(HK key, double delta)
Increment value of a hash key by the given delta at the bound key.
Setkeys()
Get key set (fields) of hash at the bound key.
voidput(HK key, HV value)
Set the value of a hash key at the bound key.
voidputAll(Map m)
Set multiple hash fields to multiple values using data provided in m at the bound key.
BooleanputIfAbsent(HK key, HV value)
Set the value of a hash key only if key does not exist.
Longsize()
Get size of hash at the bound key.
Listvalues()
Get entry set (values) of hash at the bound key.