The predicate interface has na abstract method test which gives a boolean value as a result for the specified argumenet System.out.println("Predicate="+p.test("hello"));//true ...
A functional interface in Java 8 is an interface that can only have one abstract method. Functional interfaces are also referred to as SAM interfaces, or, Single Abstract Method interfaces. However, ...