htmlcompiler.tools.InputValidation Maven / Gradle / Ivy
package htmlcompiler.tools;
public enum InputValidation {;
public static T orDefault(final T value, final T defaultValue) {
return (value != null) ? value : defaultValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy