Interface TreeItemPredicate<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 TreeItemPredicate<T>
Author:
m.popov
  • Method Summary

    Modifier and Type
    Method
    Description
    static <T> TreeItemPredicate<T>
    create(Predicate<T> predicate)
     
    boolean
    test(javafx.scene.control.TreeItem<T> parent, T value)
     
  • Method Details

    • test

      boolean test(javafx.scene.control.TreeItem<T> parent, T value)
    • create

      static <T> TreeItemPredicate<T> create(Predicate<T> predicate)