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

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

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

import org.solidcoding.validation.api.ChainingPredicate;

import java.util.function.Predicate;

public interface DecimalNumberPredicate extends GenericPredicate {

    /**
     * @param first the first (inclusive) constraint. Can be either the high constraint or the low constraint.
     * @return a ChainingPredicate to add the second constraint.
     */
    ChainingPredicate> between(double first);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy