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

org.solidcoding.validation.api.ValidationBuilder Maven / Gradle / Ivy

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

import java.util.Collection;

public interface ValidationBuilder {

    /**
     * @param rule the rule which the value needs to comply with.
     * @return the Validator to add more rules.
     */
    ContinuingValidator compliesWith(Rule rule);

    /**
     * @param rules the rules which the value needs to comply with.
     * @return the Validator to add more rules.
     */
    ContinuingValidator compliesWith(Collection> rules);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy