Interface Consumer2<T1,T2>

All Superinterfaces:
BiConsumer<T1,T2>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface Consumer2<T1,T2> extends BiConsumer<T1,T2>
A consumer with 2 arguments.
Author:
Lukas Eder
  • Method Details

    • accept

      default void accept(Tuple2<? extends T1,? extends T2> args)
      Performs this operation on the given argument.
      Parameters:
      args - The arguments as a tuple.
    • accept

      void accept(T1 v1, T2 v2)
      Performs this operation on the given argument.
      Specified by:
      accept in interface BiConsumer<T1,T2>
    • toBiConsumer

      default BiConsumer<T1,T2> toBiConsumer()
      Convert this consumer to a BiConsumer.
    • from

      static <T1, T2> Consumer2<T1,T2> from(BiConsumer<? super T1,? super T2> consumer)
      Convert to this consumer to a BiConsumer.
    • acceptPartially

      default Consumer1<T2> acceptPartially(T1 v1)
      Let this consumer partially accept the arguments.
    • acceptPartially

      default Consumer0 acceptPartially(T1 v1, T2 v2)
      Let this consumer partially accept the arguments.
    • acceptPartially

      default Consumer1<T2> acceptPartially(Tuple1<? extends T1> args)
      Let this consumer partially accept the arguments.
    • acceptPartially

      default Consumer0 acceptPartially(Tuple2<? extends T1,? extends T2> args)
      Let this consumer partially accept the arguments.