Predicate<T> interface
Represents a predicate (boolean-valued function) of one argument. Mimics the standard java.util.function.Predicate<T> interface defined in the Java API as of Java 8.
This interface and its test method are to be implemented on the client side.
public static interface IDataCaptureProfileBuilder.Predicate<T>
Methods
Name | Description |
---|---|
test | Evaluates this predicate on the given argument. |
3/2/2022 12:59:15 PM