diff --git a/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicDouble.java b/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicDouble.java index c29a0e3d8..0bd89c090 100644 --- a/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicDouble.java +++ b/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicDouble.java @@ -143,7 +143,7 @@ public class RedisAtomicDouble extends Number implements Serializable, BoundKeyO } /** - * Gets the current value. + * Get the current value. * * @return the current value. */ @@ -158,7 +158,7 @@ public class RedisAtomicDouble extends Number implements Serializable, BoundKeyO } /** - * Sets to the given value. + * Set to the given value. * * @param newValue the new value. */ @@ -167,7 +167,7 @@ public class RedisAtomicDouble extends Number implements Serializable, BoundKeyO } /** - * Atomically sets to the given value and returns the old value. + * Set to the given value and return the old value. * * @param newValue the new value. * @return the previous value. @@ -180,7 +180,7 @@ public class RedisAtomicDouble extends Number implements Serializable, BoundKeyO } /** - * Atomically sets the value to the given updated value if the current value {@code ==} the expected value. + * Atomically set the value to the given updated value if the current value {@code ==} the expected value. * * @param expect the expected value. * @param update the new value. @@ -192,56 +192,56 @@ public class RedisAtomicDouble extends Number implements Serializable, BoundKeyO } /** - * Atomically increments by one the current value. + * Atomically increment by one the current value. * - * @return the previous value + * @return the previous value. */ public double getAndIncrement() { return incrementAndGet() - 1.0; } /** - * Atomically decrements by one the current value. + * Atomically decrement by one the current value. * - * @return the previous value + * @return the previous value. */ public double getAndDecrement() { return decrementAndGet() + 1.0; } /** - * Atomically adds the given value to the current value. + * Atomically add the given value to current value. * - * @param delta the value to add - * @return the previous value + * @param delta the value to add. + * @return the previous value. */ public double getAndAdd(double delta) { return addAndGet(delta) - delta; } /** - * Atomically increments by one the current value. + * Atomically increment by one the current value. * - * @return the updated value + * @return the updated value. */ public double incrementAndGet() { return operations.increment(key, 1.0); } /** - * Atomically decrements by one the current value. + * Atomically decrement by one the current value. * - * @return the updated value + * @return the updated value. */ public double decrementAndGet() { return operations.increment(key, -1.0); } /** - * Atomically adds the given value to the current value. + * Atomically add the given value to current value. * - * @param delta the value to add - * @return the updated value + * @param delta the value to add. + * @return the updated value. */ public double addAndGet(double delta) { return operations.increment(key, delta); diff --git a/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicInteger.java b/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicInteger.java index 1a2f4f492..e3926aa46 100644 --- a/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicInteger.java +++ b/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicInteger.java @@ -165,7 +165,7 @@ public class RedisAtomicInteger extends Number implements Serializable, BoundKey } /** - * Set to the give value and return the old value. + * Set to the given value and return the old value. * * @param newValue the new value. * @return the previous value. @@ -178,7 +178,7 @@ public class RedisAtomicInteger extends Number implements Serializable, BoundKey } /** - * Atomically set the value to the given updated value if the current value == the expected value. + * Atomically set the value to the given updated value if the current value {@code ==} the expected value. * * @param expect the expected value. * @param update the new value. diff --git a/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicLong.java b/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicLong.java index d15d842f9..f8433f90f 100644 --- a/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicLong.java +++ b/src/main/java/org/springframework/data/redis/support/atomic/RedisAtomicLong.java @@ -147,7 +147,7 @@ public class RedisAtomicLong extends Number implements Serializable, BoundKeyOpe } /** - * Gets the current value. + * Get the current value. * * @return the current value. */ @@ -162,16 +162,16 @@ public class RedisAtomicLong extends Number implements Serializable, BoundKeyOpe } /** - * Sets to the given value. + * Set to the given value. * - * @param newValue the new value + * @param newValue the new value. */ public void set(long newValue) { operations.set(key, newValue); } /** - * Atomically sets to the given value and returns the old value. + * Set to the given value and return the old value. * * @param newValue the new value. * @return the previous value. @@ -184,7 +184,7 @@ public class RedisAtomicLong extends Number implements Serializable, BoundKeyOpe } /** - * Atomically sets the value to the given updated value if the current value {@code ==} the expected value. + * Atomically set the value to the given updated value if the current value {@code ==} the expected value. * * @param expect the expected value. * @param update the new value. @@ -196,7 +196,7 @@ public class RedisAtomicLong extends Number implements Serializable, BoundKeyOpe } /** - * Atomically increments by one the current value. + * Atomically increment by one the current value. * * @return the previous value. */ @@ -205,7 +205,7 @@ public class RedisAtomicLong extends Number implements Serializable, BoundKeyOpe } /** - * Atomically decrements by one the current value. + * Atomically decrement by one the current value. * * @return the previous value. */ @@ -214,7 +214,7 @@ public class RedisAtomicLong extends Number implements Serializable, BoundKeyOpe } /** - * Atomically adds the given value to the current value. + * Atomically add the given value to current value. * * @param delta the value to add. * @return the previous value. @@ -224,7 +224,7 @@ public class RedisAtomicLong extends Number implements Serializable, BoundKeyOpe } /** - * Atomically increments by one the current value. + * Atomically increment by one the current value. * * @return the updated value. */ @@ -233,7 +233,7 @@ public class RedisAtomicLong extends Number implements Serializable, BoundKeyOpe } /** - * Atomically decrements by one the current value. + * Atomically decrement by one the current value. * * @return the updated value. */ @@ -242,7 +242,7 @@ public class RedisAtomicLong extends Number implements Serializable, BoundKeyOpe } /** - * Atomically adds the given value to the current value. + * Atomically add the given value to current value. * * @param delta the value to add. * @return the updated value.