Interface DirectiveParseKit.TokenListConsumer

Enclosing class:
DirectiveParseKit
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 DirectiveParseKit.TokenListConsumer
The functional interface that accepts a list of tokens.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(List<Token> list)
    Accepts a list of tokens.
  • Method Details

    • accept

      void accept(List<Token> list) throws IOException
      Accepts a list of tokens.
      Parameters:
      list - The list of tokens.
      Throws:
      IOException - if an I/O error occurs.