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

io.vertx.up.uca.rs.regular.ZERO Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.up.uca.rs.regular;

import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

interface Pool {

    ConcurrentMap RULERS = new ConcurrentHashMap() {
        {
            put("required", new RequiredRuler());
            put("length", new LengthRuler());
            put("minlength", new MinLengthRuler());
            put("maxlength", new MaxLengthRuler());
            put("empty", new EmptyRuler());
            put("singlefile", new SingleFileRuler());
        }
    };
}

interface Info {

    String MSG_FAILURE = "[ ZERO ] Rule validation failure: {0}";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy