Interface BooleanSupplierWithContext<C>

Type Parameters:
C - The context type.
All Superinterfaces:
Predicate<C>
All Known Subinterfaces:
BooleanSupplierWithContext.Ignored<C>
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 BooleanSupplierWithContext<C> extends Predicate<C>
A boolean supplier like interface for use with Plans and their contexts.
  • Method Details

    • getAsBoolean

      boolean getAsBoolean(C context)
    • test

      default boolean test(C c)
      Specified by:
      test in interface Predicate<C>