Better consumer Javadocs
This commit is contained in:
parent
0755a190a5
commit
02e55fc072
|
@ -42,7 +42,7 @@ public interface BooleanConsumer {
|
|||
}
|
||||
|
||||
/**
|
||||
* Performs this operation on the given argument.
|
||||
* Accepts the given arguments.
|
||||
*
|
||||
* @param value the input argument
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue