com.apamatesoft.validator.functions.Validate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Validator Show documentation
Show all versions of Validator Show documentation
Facilitates the validation of Strings by chaining a series of rules
package com.apamatesoft.validator.functions;
@FunctionalInterface
public interface Validate {
boolean invoke(String evaluate);
}