Interface TransitionPredicate<S,​I,​T>

  • 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 TransitionPredicate<S,​I,​T>
    • Method Detail

      • toUnaryPredicate

        default Predicate<? super T> toUnaryPredicate​(S source,
                                                      I input)
      • apply

        boolean apply​(S source,
                      I input,
                      T transition)