Interface NSLookup.BiConsumer<T,U>

Enclosing class:
NSLookup

public static interface NSLookup.BiConsumer<T,U>
This utility must support running on JDK 7 platform. Hence using our own BiConsumer API rather than the JDK 8 API.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(T t, U u)
    Performs this operation on the given arguments.
  • Method Details

    • accept

      void accept(T t, U u)
      Performs this operation on the given arguments.
      Parameters:
      t - the first input argument
      u - the second input argument