6 Şubat 2023 Pazartesi

BiPredicate Arayüzü

Giriş
T — the first input argument
U — the second input argument

Örnek
Şöyle yaparız.
Predicate<Node> isElement = node -> node.getNodeType() == Node.ELEMENT_NODE;
BiPredicate<Node,String> hasName = (node,name) -> node.getNodeName().equals(name);

Hiç yorum yok:

Yorum Gönder