All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.solidcoding.validation.predicates.GenericPredicate Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package org.solidcoding.validation.predicates;

import java.util.function.Predicate;

public interface GenericPredicate extends Predicate {

    /**
     * @param rule the custom predicate to test against properties of T.
     * @return ObjectPredicate to continue adding rules.
     */
    Predicate where(Predicate rule);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy