Predicate 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. Use this interface and its method for data verification after it has passed the regular expression check.
This interface and its test method are to be implemented on the client side.
interface Predicate
Methods
Name | Description |
---|---|
test | Evaluates this predicate on the given argument. |
02.03.2022 12:59:15