Interface WadUtils.WadConsumer

Enclosing class:
WadUtils
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 static interface WadUtils.WadConsumer
A functional interface that describes a function that takes a Wad and returns void, without handling any exceptions thrown by it.
Since:
2.5.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(Wad wad)
    Calls this function with a Wad file.
  • Method Details

    • accept

      void accept(Wad wad) throws IOException
      Calls this function with a Wad file.
      Parameters:
      wad - the provided Wad to operate on.
      Throws:
      IOException - if any I/O exception occurs.