diff --git a/src/main/java/org/springframework/data/redis/core/ListOperations.java b/src/main/java/org/springframework/data/redis/core/ListOperations.java index ae2c09473f..08e6c6ef17 100644 --- a/src/main/java/org/springframework/data/redis/core/ListOperations.java +++ b/src/main/java/org/springframework/data/redis/core/ListOperations.java @@ -34,6 +34,7 @@ * @author Christoph Strobl * @author Mark Paluch * @author dengliming + * @author Alen Turkovic */ public interface ListOperations { @@ -388,6 +389,7 @@ default V move(K sourceKey, Direction from, K destinationKey, Direction to, Dura * @since 2.4 * @see Redis Documentation: LPOS */ + @Nullable Long indexOf(K key, V value); /** @@ -400,6 +402,7 @@ default V move(K sourceKey, Direction from, K destinationKey, Direction to, Dura * @since 2.4 * @see Redis Documentation: LPOS */ + @Nullable Long lastIndexOf(K key, V value); /**