Interface AttributeConsumer

  • 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 AttributeConsumer
    Used for iterating over all the key/value pairs in an Attributes instance.
    • Method Detail

      • accept

        <T> void accept​(AttributeKey<T> key,
                        T value)