Skip to content

Commit c8a43a4

Browse files
committed
Javadoc
1 parent 2c949b1 commit c8a43a4

35 files changed

+40
-40
lines changed

src/main/java/org/apache/commons/lang3/function/BooleanConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface BooleanConsumer {
3333
BooleanConsumer NOP = t -> { /* NOP */ };
3434

3535
/**
36-
* Returns The NOP singleton.
36+
* Returns the NOP singleton.
3737
*
3838
* @return The NOP singleton.
3939
*/

src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public interface FailableBiConsumer<T, U, E extends Throwable> {
3636
FailableBiConsumer NOP = (t, u) -> { /* NOP */ };
3737

3838
/**
39-
* Returns The NOP singleton.
39+
* Returns the NOP singleton.
4040
*
4141
* @param <T> Consumed type 1.
4242
* @param <U> Consumed type 2.

src/main/java/org/apache/commons/lang3/function/FailableBiFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public interface FailableBiFunction<T, U, R, E extends Throwable> {
3838
FailableBiFunction NOP = (t, u) -> null;
3939

4040
/**
41-
* Returns The NOP singleton.
41+
* Returns the NOP singleton.
4242
*
4343
* @param <T> Consumed type 1.
4444
* @param <U> Consumed type 2.

src/main/java/org/apache/commons/lang3/function/FailableBiPredicate.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public interface FailableBiPredicate<T, U, E extends Throwable> {
4040
FailableBiPredicate TRUE = (t, u) -> true;
4141

4242
/**
43-
* Returns The FALSE singleton.
43+
* Returns the FALSE singleton.
4444
*
4545
* @param <T> Consumed type 1.
4646
* @param <U> Consumed type 2.
@@ -53,7 +53,7 @@ static <T, U, E extends Throwable> FailableBiPredicate<T, U, E> falsePredicate()
5353
}
5454

5555
/**
56-
* Returns The TRUE singleton.
56+
* Returns the TRUE singleton.
5757
*
5858
* @param <T> Consumed type 1.
5959
* @param <U> Consumed type 2.

src/main/java/org/apache/commons/lang3/function/FailableConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public interface FailableConsumer<T, E extends Throwable> {
4040
FailableConsumer NOP = Function.identity()::apply;
4141

4242
/**
43-
* Returns The NOP singleton.
43+
* Returns the NOP singleton.
4444
*
4545
* @param <T> Consumed type 1.
4646
* @param <E> The kind of thrown exception or error.

src/main/java/org/apache/commons/lang3/function/FailableDoubleConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableDoubleConsumer<E extends Throwable> {
3434
FailableDoubleConsumer NOP = t -> { /* NOP */ };
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <E> The kind of thrown exception or error.
4040
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableDoubleFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableDoubleFunction<R, E extends Throwable> {
3434
FailableDoubleFunction NOP = t -> null;
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <R> Return type.
4040
* @param <E> The kind of thrown exception or error.

src/main/java/org/apache/commons/lang3/function/FailableDoublePredicate.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public interface FailableDoublePredicate<E extends Throwable> {
3838
FailableDoublePredicate TRUE = t -> true;
3939

4040
/**
41-
* Returns The FALSE singleton.
41+
* Returns the FALSE singleton.
4242
*
4343
* @param <E> The kind of thrown exception or error.
4444
* @return The NOP singleton.
@@ -49,7 +49,7 @@ static <E extends Throwable> FailableDoublePredicate<E> falsePredicate() {
4949
}
5050

5151
/**
52-
* Returns The TRUE singleton.
52+
* Returns the TRUE singleton.
5353
*
5454
* @param <E> The kind of thrown exception or error.
5555
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableDoubleToIntFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface FailableDoubleToIntFunction<E extends Throwable> {
3333
FailableDoubleToIntFunction NOP = t -> 0;
3434

3535
/**
36-
* Returns The NOP singleton.
36+
* Returns the NOP singleton.
3737
*
3838
* @param <E> The kind of thrown exception or error.
3939
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableDoubleToLongFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface FailableDoubleToLongFunction<E extends Throwable> {
3333
FailableDoubleToLongFunction NOP = t -> 0;
3434

3535
/**
36-
* Returns The NOP singleton.
36+
* Returns the NOP singleton.
3737
*
3838
* @param <E> The kind of thrown exception or error.
3939
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableDoubleUnaryOperator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ static <E extends Throwable> FailableDoubleUnaryOperator<E> identity() {
4343
}
4444

4545
/**
46-
* Returns The NOP singleton.
46+
* Returns the NOP singleton.
4747
*
4848
* @param <E> The kind of thrown exception or error.
4949
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static <T, E extends Throwable> FailableFunction<T, T, E> identity() {
6161
}
6262

6363
/**
64-
* Returns The NOP singleton.
64+
* Returns the NOP singleton.
6565
*
6666
* @param <T> Consumed type.
6767
* @param <R> Return type.

src/main/java/org/apache/commons/lang3/function/FailableIntConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableIntConsumer<E extends Throwable> {
3434
FailableIntConsumer NOP = t -> { /* NOP */ };
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <E> The kind of thrown exception or error.
4040
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableIntFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableIntFunction<R, E extends Throwable> {
3434
FailableIntFunction NOP = t -> null;
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <R> Return type.
4040
* @param <E> The kind of thrown exception or error.

src/main/java/org/apache/commons/lang3/function/FailableIntPredicate.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public interface FailableIntPredicate<E extends Throwable> {
3838
FailableIntPredicate TRUE = t -> true;
3939

4040
/**
41-
* Returns The FALSE singleton.
41+
* Returns the FALSE singleton.
4242
*
4343
* @param <E> The kind of thrown exception or error.
4444
* @return The NOP singleton.
@@ -49,7 +49,7 @@ static <E extends Throwable> FailableIntPredicate<E> falsePredicate() {
4949
}
5050

5151
/**
52-
* Returns The TRUE singleton.
52+
* Returns the TRUE singleton.
5353
*
5454
* @param <E> The kind of thrown exception or error.
5555
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableIntToDoubleFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface FailableIntToDoubleFunction<E extends Throwable> {
3333
FailableIntToDoubleFunction NOP = t -> 0d;
3434

3535
/**
36-
* Returns The NOP singleton.
36+
* Returns the NOP singleton.
3737
*
3838
* @param <E> The kind of thrown exception or error.
3939
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableIntToFloatFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface FailableIntToFloatFunction<E extends Throwable> {
3333
FailableIntToFloatFunction NOP = t -> 0f;
3434

3535
/**
36-
* Returns The NOP singleton.
36+
* Returns the NOP singleton.
3737
*
3838
* @param <E> The kind of thrown exception or error.
3939
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableIntToLongFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface FailableIntToLongFunction<E extends Throwable> {
3333
FailableIntToLongFunction NOP = t -> 0L;
3434

3535
/**
36-
* Returns The NOP singleton.
36+
* Returns the NOP singleton.
3737
*
3838
* @param <E> The kind of thrown exception or error.
3939
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableIntUnaryOperator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ static <E extends Throwable> FailableIntUnaryOperator<E> identity() {
4343
}
4444

4545
/**
46-
* Returns The NOP singleton.
46+
* Returns the NOP singleton.
4747
*
4848
* @param <E> The kind of thrown exception or error.
4949
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableLongConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableLongConsumer<E extends Throwable> {
3434
FailableLongConsumer NOP = t -> { /* NOP */ };
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <E> The kind of thrown exception or error.
4040
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableLongFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableLongFunction<R, E extends Throwable> {
3434
FailableLongFunction NOP = t -> null;
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <R> Return type.
4040
* @param <E> The kind of thrown exception or error.

src/main/java/org/apache/commons/lang3/function/FailableLongPredicate.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public interface FailableLongPredicate<E extends Throwable> {
3838
FailableLongPredicate TRUE = t -> true;
3939

4040
/**
41-
* Returns The FALSE singleton.
41+
* Returns the FALSE singleton.
4242
*
4343
* @param <E> The kind of thrown exception or error.
4444
* @return The NOP singleton.
@@ -49,7 +49,7 @@ static <E extends Throwable> FailableLongPredicate<E> falsePredicate() {
4949
}
5050

5151
/**
52-
* Returns The TRUE singleton.
52+
* Returns the TRUE singleton.
5353
*
5454
* @param <E> The kind of thrown exception or error.
5555
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableLongToDoubleFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface FailableLongToDoubleFunction<E extends Throwable> {
3333
FailableLongToDoubleFunction NOP = t -> 0d;
3434

3535
/**
36-
* Returns The NOP singleton.
36+
* Returns the NOP singleton.
3737
*
3838
* @param <E> The kind of thrown exception or error.
3939
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableLongToIntFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface FailableLongToIntFunction<E extends Throwable> {
3333
FailableLongToIntFunction NOP = t -> 0;
3434

3535
/**
36-
* Returns The NOP singleton.
36+
* Returns the NOP singleton.
3737
*
3838
* @param <E> The kind of thrown exception or error.
3939
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableLongUnaryOperator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ static <E extends Throwable> FailableLongUnaryOperator<E> identity() {
4343
}
4444

4545
/**
46-
* Returns The NOP singleton.
46+
* Returns the NOP singleton.
4747
*
4848
* @param <E> The kind of thrown exception or error.
4949
* @return The NOP singleton.

src/main/java/org/apache/commons/lang3/function/FailableObjDoubleConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableObjDoubleConsumer<T, E extends Throwable> {
3434
FailableObjDoubleConsumer NOP = (t, u) -> { /* NOP */ };
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <T> the type of the object argument to the operation.
4040
* @param <E> The kind of thrown exception or error.

src/main/java/org/apache/commons/lang3/function/FailableObjIntConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableObjIntConsumer<T, E extends Throwable> {
3434
FailableObjIntConsumer NOP = (t, u) -> { /* NOP */ };
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <T> the type of the object argument to the operation.
4040
* @param <E> The kind of thrown exception or error.

src/main/java/org/apache/commons/lang3/function/FailableObjLongConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableObjLongConsumer<T, E extends Throwable> {
3434
FailableObjLongConsumer NOP = (t, u) -> { /* NOP */ };
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <T> the type of the object argument to the operation.
4040
* @param <E> The kind of thrown exception or error.

src/main/java/org/apache/commons/lang3/function/FailablePredicate.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public interface FailablePredicate<T, E extends Throwable> {
3939
FailablePredicate TRUE = t -> true;
4040

4141
/**
42-
* Returns The FALSE singleton.
42+
* Returns the FALSE singleton.
4343
*
4444
* @param <T> Predicate type.
4545
* @param <E> The kind of thrown exception or error.
@@ -51,7 +51,7 @@ static <T, E extends Throwable> FailablePredicate<T, E> falsePredicate() {
5151
}
5252

5353
/**
54-
* Returns The TRUE singleton.
54+
* Returns the TRUE singleton.
5555
*
5656
* @param <T> Predicate type.
5757
* @param <E> The kind of thrown exception or error.

src/main/java/org/apache/commons/lang3/function/FailableToDoubleBiFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public interface FailableToDoubleBiFunction<T, U, E extends Throwable> {
3535
FailableToDoubleBiFunction NOP = (t, u) -> 0d;
3636

3737
/**
38-
* Returns The NOP singleton.
38+
* Returns the NOP singleton.
3939
*
4040
* @param <T> the type of the first argument to the function
4141
* @param <U> the type of the second argument to the function

src/main/java/org/apache/commons/lang3/function/FailableToDoubleFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableToDoubleFunction<T, E extends Throwable> {
3434
FailableToDoubleFunction NOP = t -> 0d;
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <T> the type of the argument to the function
4040
* @param <E> The kind of thrown exception or error.

src/main/java/org/apache/commons/lang3/function/FailableToIntBiFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public interface FailableToIntBiFunction<T, U, E extends Throwable> {
3535
FailableToIntBiFunction NOP = (t, u) -> 0;
3636

3737
/**
38-
* Returns The NOP singleton.
38+
* Returns the NOP singleton.
3939
*
4040
* @param <T> the type of the first argument to the function
4141
* @param <U> the type of the second argument to the function

src/main/java/org/apache/commons/lang3/function/FailableToIntFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableToIntFunction<T, E extends Throwable> {
3434
FailableToIntFunction NOP = t -> 0;
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <T> the type of the argument to the function
4040
* @param <E> The kind of thrown exception or error.

src/main/java/org/apache/commons/lang3/function/FailableToLongBiFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public interface FailableToLongBiFunction<T, U, E extends Throwable> {
3535
FailableToLongBiFunction NOP = (t, u) -> 0;
3636

3737
/**
38-
* Returns The NOP singleton.
38+
* Returns the NOP singleton.
3939
*
4040
* @param <T> the type of the first argument to the function
4141
* @param <U> the type of the second argument to the function

src/main/java/org/apache/commons/lang3/function/FailableToLongFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface FailableToLongFunction<T, E extends Throwable> {
3434
FailableToLongFunction NOP = t -> 0L;
3535

3636
/**
37-
* Returns The NOP singleton.
37+
* Returns the NOP singleton.
3838
*
3939
* @param <T> the type of the argument to the function
4040
* @param <E> The kind of thrown exception or error.

0 commit comments

Comments
 (0)