Better consumer Javadocs

This commit is contained in:
Gary Gregory 2023-05-06 14:00:33 -04:00
parent 0755a190a5
commit 02e55fc072
9 changed files with 9 additions and 9 deletions

View File

@ -42,7 +42,7 @@ public interface BooleanConsumer {
}
/**
* Performs this operation on the given argument.
* Accepts the given arguments.
*
* @param value the input argument
*/

View File

@ -48,7 +48,7 @@ public interface FailableBiConsumer<T, U, E extends Throwable> {
}
/**
* Accepts the consumer.
* Accepts the given arguments.
*
* @param t the first parameter for the consumable to accept
* @param u the second parameter for the consumable to accept

View File

@ -51,7 +51,7 @@ public interface FailableConsumer<T, E extends Throwable> {
}
/**
* Accepts the consumer.
* Accepts the given arguments.
*
* @param object the parameter for the consumable to accept
* @throws E Thrown when the consumer fails.

View File

@ -44,7 +44,7 @@ public interface FailableDoubleConsumer<E extends Throwable> {
}
/**
* Accepts the consumer.
* Accepts the given arguments.
*
* @param value the parameter for the consumable to accept
* @throws E Thrown when the consumer fails.

View File

@ -44,7 +44,7 @@ public interface FailableIntConsumer<E extends Throwable> {
}
/**
* Accepts the consumer.
* Accepts the given arguments.
*
* @param value the parameter for the consumable to accept
* @throws E Thrown when the consumer fails.

View File

@ -44,7 +44,7 @@ public interface FailableLongConsumer<E extends Throwable> {
}
/**
* Accepts the consumer.
* Accepts the given arguments.
*
* @param object the parameter for the consumable to accept
* @throws E Thrown when the consumer fails.

View File

@ -45,7 +45,7 @@ public interface FailableObjDoubleConsumer<T, E extends Throwable> {
}
/**
* Accepts the consumer.
* Accepts the given arguments.
*
* @param object the object parameter for the consumable to accept.
* @param value the double parameter for the consumable to accept.

View File

@ -45,7 +45,7 @@ public interface FailableObjIntConsumer<T, E extends Throwable> {
}
/**
* Accepts the consumer.
* Accepts the given arguments.
*
* @param object the object parameter for the consumable to accept.
* @param value the int parameter for the consumable to accept.

View File

@ -45,7 +45,7 @@ public interface FailableObjLongConsumer<T, E extends Throwable> {
}
/**
* Accepts the consumer.
* Accepts the given arguments.
*
* @param object the object parameter for the consumable to accept.
* @param value the long parameter for the consumable to accept.