Annotate indexOf(..) and lastIndexOf(..) ListOperations with @Nullable.

Closes #2488
This commit is contained in:
John Blum
2023-01-19 16:58:53 -08:00
parent e4c4c7e040
commit b958756d15

View File

@@ -388,6 +388,7 @@ public interface ListOperations<K, V> {
* @since 2.4
* @see <a href="https://redis.io/commands/lpos">Redis Documentation: LPOS</a>
*/
@Nullable
Long indexOf(K key, V value);
/**
@@ -400,6 +401,7 @@ public interface ListOperations<K, V> {
* @since 2.4
* @see <a href="https://redis.io/commands/lpos">Redis Documentation: LPOS</a>
*/
@Nullable
Long lastIndexOf(K key, V value);
/**