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

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

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

public final class MakeSure {

    private MakeSure() {
    }

    /**
     * @param value the value on which to apply the rules.
     * @param    the type of the value.
     * @return a Validator to add rules to.
     */
    public static  ValidationBuilder that(T value) {
        return new RuleValidationBuilder<>(value);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy